summaryrefslogtreecommitdiff
path: root/test/Assembler/AutoUpgradeIntrinsics.ll
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-04-12 22:59:27 +0000
committerBill Wendling <isanbard@gmail.com>2011-04-12 22:59:27 +0000
commitf9b2dc66c87256b55f9bdfe037d1fa6f705200e8 (patch)
tree4f2feca9f33c7a89d6bc77e9c79ee8e45a478a11 /test/Assembler/AutoUpgradeIntrinsics.ll
parent3cbee30eacd5d918a00f21c08dbd10ee9ae73925 (diff)
downloadllvm-f9b2dc66c87256b55f9bdfe037d1fa6f705200e8.tar.gz
llvm-f9b2dc66c87256b55f9bdfe037d1fa6f705200e8.tar.bz2
llvm-f9b2dc66c87256b55f9bdfe037d1fa6f705200e8.tar.xz
Revert r129401 for now. Clang is using the old way of doing things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129403 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/AutoUpgradeIntrinsics.ll')
-rw-r--r--test/Assembler/AutoUpgradeIntrinsics.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/Assembler/AutoUpgradeIntrinsics.ll b/test/Assembler/AutoUpgradeIntrinsics.ll
index e4e2d3a56e..6752bd8281 100644
--- a/test/Assembler/AutoUpgradeIntrinsics.ll
+++ b/test/Assembler/AutoUpgradeIntrinsics.ll
@@ -7,8 +7,6 @@
; RUN: llvm-as < %s | llvm-dis | \
; RUN: not grep {llvm\\.bswap\\.i\[0-9\]*\\.i\[0-9\]*}
; RUN: llvm-as < %s | llvm-dis | \
-; RUN: not grep {llvm\\.x86\\.sse2\\.loadu}
-; RUN: llvm-as < %s | llvm-dis | \
; RUN: grep {llvm\\.x86\\.mmx\\.ps} | grep {x86_mmx} | count 16
declare i32 @llvm.ctpop.i28(i28 %val)
@@ -81,13 +79,3 @@ define void @sh64(<1 x i64> %A, <2 x i32> %B) {
%r2 = call <1 x i64> @llvm.x86.mmx.psrl.q( <1 x i64> %A, <2 x i32> %B ) ; <<1 x i64>> [#uses=0]
ret void
}
-
-declare <4 x float> @llvm.x86.sse.loadu.ps(i8*) nounwind readnone
-declare <16 x i8> @llvm.x86.sse2.loadu.dq(i8*) nounwind readnone
-declare <2 x double> @llvm.x86.sse2.loadu.pd(double*) nounwind readnone
-define void @test_loadu(i8* %a, double* %b) {
- %v0 = call <4 x float> @llvm.x86.sse.loadu.ps(i8* %a)
- %v1 = call <16 x i8> @llvm.x86.sse2.loadu.dq(i8* %a)
- %v2 = call <2 x double> @llvm.x86.sse2.loadu.pd(double* %b)
- ret void
-}