diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-01-15 09:38:59 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-01-15 09:38:59 +0000 |
commit | fd63436553967c1c6eb8fb441df670f63cd19c48 (patch) | |
tree | 97d32136d48fcc4ab881877abd100e58f49dba65 /llvm/test/CodeGen/X86/shift-combine.ll | |
parent | 4bb2eb15d4da76d880f8920f1f5fa94204a23eb0 (diff) | |
download | bcm5719-llvm-fd63436553967c1c6eb8fb441df670f63cd19c48.tar.gz bcm5719-llvm-fd63436553967c1c6eb8fb441df670f63cd19c48.zip |
Relax the FileCheck assertion a bit -- all we really care about is that
we're loading from the global array, not how it is spelled in the asm.
This should fix the MSVC bots.
llvm-svn: 148214
Diffstat (limited to 'llvm/test/CodeGen/X86/shift-combine.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/shift-combine.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/shift-combine.ll b/llvm/test/CodeGen/X86/shift-combine.ll index 0a6ea28faff..51f83036c23 100644 --- a/llvm/test/CodeGen/X86/shift-combine.ll +++ b/llvm/test/CodeGen/X86/shift-combine.ll @@ -6,7 +6,7 @@ define i32 @test_lshr_and(i32 %x) { ; CHECK: test_lshr_and: ; CHECK-NOT: shrl ; CHECK: andl $12, -; CHECK: movl array(%{{...}}), +; CHECK: movl {{.*}}array{{.*}}, ; CHECK: ret entry: |