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
diff --git a/utils/TableGen/CodeGenIntrinsics.h b/utils/TableGen/CodeGenIntrinsics.h
index bca52bc..0c39d8e 100644
--- a/utils/TableGen/CodeGenIntrinsics.h
+++ b/utils/TableGen/CodeGenIntrinsics.h
@@ -25,7 +25,8 @@
     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;