diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-04-07 21:18:40 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-04-07 21:18:40 +0000 |
commit | c24b8344251962ad4d0cf52723137a5635d259b2 (patch) | |
tree | 60592e3e9bab3760e37733f3142469457b77dfa5 | |
parent | 6b92b8e50d7e5b48407865c3aaf9966c01416c69 (diff) |
Remove int_x86_sse_storeh_ps and int_x86_sse_storel_ps. These are now lowered
by the frontend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27495 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/IntrinsicsX86.td | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/IntrinsicsX86.td b/include/llvm/IntrinsicsX86.td index faa587b715..74c9442289 100644 --- a/include/llvm/IntrinsicsX86.td +++ b/include/llvm/IntrinsicsX86.td @@ -132,10 +132,6 @@ let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". // SIMD store ops let TargetPrefix = "x86" in { // All intrinsics start with "llvm.x86.". - def int_x86_sse_storeh_ps : GCCBuiltin<"__builtin_ia32_storehps">, - Intrinsic<[llvm_ptr_ty, llvm_v4f32_ty], [IntrWriteMem]>; - def int_x86_sse_storel_ps : GCCBuiltin<"__builtin_ia32_storelps">, - Intrinsic<[llvm_ptr_ty, llvm_v4f32_ty], [IntrWriteMem]>; def int_x86_sse_storeu_ps : GCCBuiltin<"__builtin_ia32_storeups">, Intrinsic<[llvm_ptr_ty, llvm_v4f32_ty], [IntrWriteMem]>; } |