[llvm] r236710 - llvm/test/CodeGen/X86/llc-override-mcpu-mattr.ll: Tweak not to be affected by x64 Calling Convention.
NAKAMURA Takumi
geek4civic at gmail.com
Thu May 7 03:18:28 PDT 2015
Author: chapuni
Date: Thu May 7 05:18:28 2015
New Revision: 236710
URL: http://llvm.org/viewvc/llvm-project?rev=236710&view=rev
Log:
llvm/test/CodeGen/X86/llc-override-mcpu-mattr.ll: Tweak not to be affected by x64 Calling Convention.
Modified:
llvm/trunk/test/CodeGen/X86/llc-override-mcpu-mattr.ll
Modified: llvm/trunk/test/CodeGen/X86/llc-override-mcpu-mattr.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/llc-override-mcpu-mattr.ll?rev=236710&r1=236709&r2=236710&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/llc-override-mcpu-mattr.ll (original)
+++ llvm/trunk/test/CodeGen/X86/llc-override-mcpu-mattr.ll Thu May 7 05:18:28 2015
@@ -4,12 +4,14 @@
; 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:
- %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
}
More information about the llvm-commits
mailing list