diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 22:20:47 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 22:20:47 +0000 |
commit | 1c75ef2ce202f7a13e2dcde4e317ebe3c40f64bd (patch) | |
tree | 7dc2798ed09c4fee4b3b21a22cac44e21a6f8ff5 /llvm/test/CodeGen/X86/lea-3.ll | |
parent | 343c88cdb93ffdc3dc44473cb632b2447fa6517f (diff) | |
download | bcm5719-llvm-1c75ef2ce202f7a13e2dcde4e317ebe3c40f64bd.tar.gz bcm5719-llvm-1c75ef2ce202f7a13e2dcde4e317ebe3c40f64bd.zip |
For PR1319: Upgrade to new test harness.
llvm-svn: 36091
Diffstat (limited to 'llvm/test/CodeGen/X86/lea-3.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/lea-3.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/lea-3.ll b/llvm/test/CodeGen/X86/lea-3.ll index 89841ff110e..89991fd1c3e 100644 --- a/llvm/test/CodeGen/X86/lea-3.ll +++ b/llvm/test/CodeGen/X86/lea-3.ll @@ -1,11 +1,11 @@ -; RUN: llvm-as < %s | llc -march=x86-64 | grep 'leal (%rdi,%rdi,2), %eax' && +; RUN: llvm-as < %s | llc -march=x86-64 | grep {leal (%rdi,%rdi,2), %eax} define i32 @test(i32 %a) { %tmp2 = mul i32 %a, 3 ; <i32> [#uses=1] ret i32 %tmp2 } -; RUN: llvm-as < %s | llc -march=x86-64 | grep 'leaq (,%rdi,4), %rax' +; RUN: llvm-as < %s | llc -march=x86-64 | grep {leaq (,%rdi,4), %rax} define i64 @test2(i64 %a) { %tmp2 = shl i64 %a, 2 %tmp3 = or i64 %tmp2, %a |