Remove int_x86_sse_loadh_ps and int_x86_sse_loadl_ps. These are now lowered
authorEvan Cheng <evan.cheng@apple.com>
Thu, 6 Apr 2006 23:25:41 +0000 (23:25 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 6 Apr 2006 23:25:41 +0000 (23:25 +0000)
by the frontend to shuffles.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27475 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IntrinsicsX86.td

index a6d548c566712ea0fa9c825f8ba18bd889f7ba95..faa587b715f301d3f33d29545f49c1b41b8f881a 100644 (file)
@@ -126,10 +126,6 @@ let TargetPrefix = "x86" in {  // All intrinsics start with "llvm.x86.".
 
 // SIMD load ops
 let TargetPrefix = "x86" in {  // All intrinsics start with "llvm.x86.".
-  def int_x86_sse_loadh_ps : GCCBuiltin<"__builtin_ia32_loadhps">,
-              Intrinsic<[llvm_v4f32_ty, llvm_ptr_ty], [IntrReadMem]>;
-  def int_x86_sse_loadl_ps : GCCBuiltin<"__builtin_ia32_loadlps">,
-              Intrinsic<[llvm_v4f32_ty, llvm_ptr_ty], [IntrReadMem]>;
   def int_x86_sse_loadu_ps : GCCBuiltin<"__builtin_ia32_loadups">,
               Intrinsic<[llvm_v4f32_ty, llvm_ptr_ty], [IntrReadMem]>;
 }