From c099b9a94f52f9d2c9135cfcfbc32bc17401500b Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Mon, 10 Dec 2007 19:30:18 +0000 Subject: [PATCH] Address comments from Chris. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44804 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/TargetBuiltins.h | 13 +++++++++++-- 1 file 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 -- 2.50.1