diff options
Diffstat (limited to 'contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h')
-rw-r--r-- | contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h b/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h index b005a5866f80..599795e3c065 100644 --- a/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h +++ b/contrib/llvm-project/llvm/utils/TableGen/CodeGenIntrinsics.h @@ -26,7 +26,7 @@ struct CodeGenIntrinsic { Record *TheDef; // The actual record defining this intrinsic. 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 ClangBuiltinName; // Name of the corresponding GCC builtin, or "". std::string MSBuiltinName; // Name of the corresponding MS builtin, or "". std::string TargetPrefix; // Target prefix, e.g. "ppc" for t-s intrinsics. @@ -125,6 +125,9 @@ struct CodeGenIntrinsic { /// True if the intrinsic is no-return. bool isNoReturn; + /// True if the intrinsic is no-callback. + bool isNoCallback; + /// True if the intrinsic is no-sync. bool isNoSync; |