diff options
author | Anders Carlsson <andersca@mac.com> | 2007-12-10 19:30:18 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-12-10 19:30:18 +0000 |
commit | c099b9a94f52f9d2c9135cfcfbc32bc17401500b (patch) | |
tree | c67034178af05a9a35da9ffba3e52892124b52ee | |
parent | cddb2af0c1d21288ff0b55a854e46d648c8ae12e (diff) |
Address comments from Chris.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44804 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/TargetBuiltins.h | 13 |
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 |