]> granicus.if.org Git - clang/commitdiff
Address comments from Chris.
authorAnders Carlsson <andersca@mac.com>
Mon, 10 Dec 2007 19:30:18 +0000 (19:30 +0000)
committerAnders Carlsson <andersca@mac.com>
Mon, 10 Dec 2007 19:30:18 +0000 (19:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44804 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/TargetBuiltins.h

index da40fb1433338cfca66fcb508ccf9ef26b33ef52..1a3117f637555983572e58ab09634a560412e31f 100644 (file)
@@ -1,14 +1,19 @@
-//===--- Targets.cpp - Implement -arch option and targets -----------------===//
+//===--- TargetBuiltins.h - Target specific builtin IDs -------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Chris Lattner and is distributed under
+// This file was developed by Anders Carlsson and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
 
+#ifndef LLVM_CLANG_AST_TARGET_BUILTINS_H
+#define LLVM_CLANG_AST_TARGET_BUILTINS_H
+
 #include "clang/AST/Builtins.h"
 
+namespace clang {
+
 /// X86 builtins
 namespace X86 {
     enum {
@@ -28,3 +33,7 @@ namespace PPC {
         LastTSBuiltin
     };
 }
+
+}
+
+#endif