aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenIntrinsics.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-13 23:08:44 +0000
committerChris Lattner <sabre@nondot.org>2006-03-13 23:08:44 +0000
commit022f64fbbc4669623e79b805379266fed519017d (patch)
treed3ab1d2f6f112793e7c9ce71aec26895650af82e /utils/TableGen/CodeGenIntrinsics.h
parent18faf5d9f7f89130b9e3304965b81e1c70ebb75c (diff)
emit a mapping from LLVM intrinsic -> GCC builtins.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26736 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenIntrinsics.h')
-rw-r--r--utils/TableGen/CodeGenIntrinsics.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/TableGen/CodeGenIntrinsics.h b/utils/TableGen/CodeGenIntrinsics.h
index bca52bcadd..0c39d8e4be 100644
--- a/utils/TableGen/CodeGenIntrinsics.h
+++ b/utils/TableGen/CodeGenIntrinsics.h
@@ -25,7 +25,8 @@ namespace llvm {
Record *TheDef; // The actual record defining this instruction.
std::string Name; // The name of the LLVM function "llvm.bswap.i32"
std::string EnumName; // The name of the enum "bswap_i32"
-
+ std::string GCCBuiltinName;// Name of the corresponding GCC builtin, or "".
+
/// ArgTypes - The type primitive enum value for the return value and all
/// of the arguments. These are things like Type::UIntTyID.
std::vector<std::string> ArgTypes;