llvm/test/CodeGen/X86/llc-override-mcpu-mattr.ll: Tweak not to be affected by x64...
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 7 May 2015 10:18:28 +0000 (10:18 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 7 May 2015 10:18:28 +0000 (10:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236710 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/llc-override-mcpu-mattr.ll

index 52563bdba5b1cd1dab27cddb0cabd315f5fa8bab..19a5ed5918674a06b96efe2888c91eb40bfe9822 100644 (file)
@@ -4,12 +4,14 @@
 ; Check that llc can overide function attributes target-cpu and target-features
 ; using command line options -mcpu and -mattr.
 
 ; Check that llc can overide function attributes target-cpu and target-features
 ; using command line options -mcpu and -mattr.
 
-; CHECK: vpsadbw %ymm{{[0-9]+}}, %ymm{{[0-9]+}}, %ymm{{[0-9]+}}
+; CHECK: vpsadbw (%r{{si|dx}}), %ymm{{[0-9]+}}, %ymm{{[0-9]+}}
 
 
-define <4 x i64> @foo1(<4 x i64> %s1, <4 x i64> %s2) #0 {
+define <4 x i64> @foo1(<4 x i64>* %s1, <4 x i64>* %s2) #0 {
 entry:
 entry:
-  %0 = bitcast <4 x i64> %s1 to <32 x i8>
-  %1 = bitcast <4 x i64> %s2 to <32 x i8>
+  %ps1 = load <4 x i64>, <4 x i64>* %s1
+  %ps2 = load <4 x i64>, <4 x i64>* %s2
+  %0 = bitcast <4 x i64> %ps1 to <32 x i8>
+  %1 = bitcast <4 x i64> %ps2 to <32 x i8>
   %2 = tail call <4 x i64> @llvm.x86.avx2.psad.bw(<32 x i8> %0, <32 x i8> %1)
   ret <4 x i64> %2
 }
   %2 = tail call <4 x i64> @llvm.x86.avx2.psad.bw(<32 x i8> %0, <32 x i8> %1)
   ret <4 x i64> %2
 }