aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/clang/AST/TargetBuiltins.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/include/clang/AST/TargetBuiltins.h b/include/clang/AST/TargetBuiltins.h
index da40fb1433..1a3117f637 100644
--- a/include/clang/AST/TargetBuiltins.h
+++ b/include/clang/AST/TargetBuiltins.h
@@ -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