diff options
author | Pete Cooper <peter_cooper@apple.com> | 2011-10-27 18:15:58 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2011-10-27 18:15:58 +0000 |
commit | ce637007977e13b1d07a590f957b15774fc0926f (patch) | |
tree | c8d3a0db265ecc4801e59d2f5dcf8e24d0563237 | |
parent | 06b4f919e8e5190ad8aa78277f8cd5991f3d7a17 (diff) | |
download | bcm5719-llvm-ce637007977e13b1d07a590f957b15774fc0926f.tar.gz bcm5719-llvm-ce637007977e13b1d07a590f957b15774fc0926f.zip |
Changed test to check for correct load size instead of shift as the shift might change if optimised
llvm-svn: 143116
-rw-r--r-- | llvm/test/CodeGen/X86/widen_load-2.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/widen_load-2.ll b/llvm/test/CodeGen/X86/widen_load-2.ll index 71699b8361d..29689dd2798 100644 --- a/llvm/test/CodeGen/X86/widen_load-2.ll +++ b/llvm/test/CodeGen/X86/widen_load-2.ll @@ -170,7 +170,7 @@ define void @add31i8(%i8vec31* nocapture sret %ret, %i8vec31* %ap, %i8vec31* %bp ; CHECK: rot %i8vec3pack = type { <3 x i8>, i8 } define %i8vec3pack @rot() nounwind { -; CHECK: shrl +; CHECK: movd {{-?[0-9]+}}(%rsp), {{%xmm[0-9]}} entry: %X = alloca %i8vec3pack, align 4 %rot = alloca %i8vec3pack, align 4 |