diff options
-rw-r--r-- | include/llvm/Intrinsics.td | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index 5fde6981d3..a115a4e59d 100644 --- a/include/llvm/Intrinsics.td +++ b/include/llvm/Intrinsics.td @@ -240,6 +240,11 @@ let TargetPrefix = "ppc" in { // All intrinsics start with "llvm.ppc.". // X86 Intrinsics // +let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". + def int_x86_ldmxcsr : GCCBuiltin<"__builtin_ia32_ldmxcsr">, + Intrinsic<[llvm_void_ty, llvm_ptr_ty], [IntrWriteMem]>; +} + // SSE1 let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". @@ -251,4 +256,4 @@ let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". def int_x86_sse2_movmskpd : GCCBuiltin<"__builtin_ia32_movmskpd">, Intrinsic<[llvm_int_ty, llvm_v2f64_ty], [InstrNoMem]>; -}
\ No newline at end of file +} |