summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenIntrinsics.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-15 01:33:26 +0000
committerChris Lattner <sabre@nondot.org>2006-03-15 01:33:26 +0000
commit3f8b8913bc9cb232871445eefa8654caf7f9986f (patch)
tree09315652507884293dd4416c6bad8fa79b094df9 /utils/TableGen/CodeGenIntrinsics.h
parentdfdcd5bb959cb1eb7632ae25ccfaa17a75257348 (diff)
downloadllvm-3f8b8913bc9cb232871445eefa8654caf7f9986f.tar.gz
llvm-3f8b8913bc9cb232871445eefa8654caf7f9986f.tar.bz2
llvm-3f8b8913bc9cb232871445eefa8654caf7f9986f.tar.xz
Autogenerate code to map from GCC builtin to LLVM intrinsic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenIntrinsics.h')
-rw-r--r--utils/TableGen/CodeGenIntrinsics.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenIntrinsics.h b/utils/TableGen/CodeGenIntrinsics.h
index 0c39d8e4be..5fcff927a7 100644
--- a/utils/TableGen/CodeGenIntrinsics.h
+++ b/utils/TableGen/CodeGenIntrinsics.h
@@ -26,6 +26,7 @@ namespace llvm {
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 "".
+ std::string TargetPrefix; // Target prefix, e.g. "ppc" for t-s intrinsics.
/// ArgTypes - The type primitive enum value for the return value and all
/// of the arguments. These are things like Type::UIntTyID.