diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-05-12 00:11:24 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-05-12 00:11:24 +0000 |
commit | e6e39dc31068f8bbec75eff75b65ddf64782df37 (patch) | |
tree | 719fa1e6f494e3119671a4d0da34e055d17f4912 /llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll | |
parent | f98a355f9b76771fbea1a88c7c2e76fda0b01eb3 (diff) | |
download | bcm5719-llvm-e6e39dc31068f8bbec75eff75b65ddf64782df37.tar.gz bcm5719-llvm-e6e39dc31068f8bbec75eff75b65ddf64782df37.zip |
Enable a bunch more -regalloc=fast tests
llvm-svn: 103531
Diffstat (limited to 'llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll b/llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll index 74429c382e7..dd833360826 100644 --- a/llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll +++ b/llvm/test/CodeGen/X86/2008-09-17-inline-asm-1.ll @@ -1,18 +1,19 @@ -; RUN: llc < %s -march=x86 | not grep "movl %eax, %eax" -; RUN: llc < %s -march=x86 | not grep "movl %edx, %edx" -; RUN: llc < %s -march=x86 | not grep "movl (%eax), %eax" -; RUN: llc < %s -march=x86 | not grep "movl (%edx), %edx" -; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl %eax, %eax" -; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl %edx, %edx" -; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl (%eax), %eax" -; RUN: llc < %s -march=x86 -regalloc=local | not grep "movl (%edx), %edx" +; RUN: llc < %s -march=x86 | FileCheck %s +; RUN: llc < %s -march=x86 -regalloc=local | FileCheck %s +; RUN: llc < %s -march=x86 -regalloc=fast | FileCheck %s ; %0 must not be put in EAX or EDX. ; In the first asm, $0 and $2 must not be put in EAX. +; CHECK: InlineAsm Start +; CHECK-NOT: movl %eax, %eax +; CHECK-NOT: movl (%eax), %eax +; CHECK: InlineAsm End ; In the second asm, $0 and $2 must not be put in EDX. -; This is kind of hard to test thoroughly, but the things above should continue -; to pass, I think. -; ModuleID = '<stdin>' +; CHECK: InlineAsm Start +; CHECK-NOT: movl %edx, %edx +; CHECK-NOT: movl (%edx), %edx +; CHECK: InlineAsm End + target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128" target triple = "i386-apple-darwin8" @x = common global i32 0 ; <i32*> [#uses=1] |