diff options
| author | Dan Gohman <gohman@apple.com> | 2009-04-23 19:39:41 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-04-23 19:39:41 +0000 |
| commit | 723f175bc94b1f690519fa57dc9bf348ef0930be (patch) | |
| tree | 8a24f344db9b7050fa2608a9107b450f38b96809 /llvm | |
| parent | f27110fc27aa4392fd05298f2ea1970bffd01a6c (diff) | |
| download | bcm5719-llvm-723f175bc94b1f690519fa57dc9bf348ef0930be.tar.gz bcm5719-llvm-723f175bc94b1f690519fa57dc9bf348ef0930be.zip | |
Explicitly pass -tailcallopt=false to these tests so that they
work as intended no matter what the default setting of that
option is.
llvm-svn: 69911
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/CodeGen/X86/critical-edge-split.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/fastcc-byval.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/fastcc-sret.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/critical-edge-split.ll b/llvm/test/CodeGen/X86/critical-edge-split.ll index 7b83ecbc5c4..4539ef623de 100644 --- a/llvm/test/CodeGen/X86/critical-edge-split.ll +++ b/llvm/test/CodeGen/X86/critical-edge-split.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin -stats -info-output-file - | grep asm-printer | grep 31 +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin -tailcallopt=false -stats -info-output-file - | grep asm-printer | grep 31 %CC = type { %Register } %II = type { %"struct.XX::II::$_74" } diff --git a/llvm/test/CodeGen/X86/fastcc-byval.ll b/llvm/test/CodeGen/X86/fastcc-byval.ll index 9f6649c3b1a..94da50584c7 100644 --- a/llvm/test/CodeGen/X86/fastcc-byval.ll +++ b/llvm/test/CodeGen/X86/fastcc-byval.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc | grep {movl\[\[:space:\]\]*8(%esp), %eax} | count 2 +; RUN: llvm-as < %s | llc -tailcallopt=false | grep {movl\[\[:space:\]\]*8(%esp), %eax} | count 2 ; PR3122 ; rdar://6400815 diff --git a/llvm/test/CodeGen/X86/fastcc-sret.ll b/llvm/test/CodeGen/X86/fastcc-sret.ll index b5338d741ff..7fc111bbc29 100644 --- a/llvm/test/CodeGen/X86/fastcc-sret.ll +++ b/llvm/test/CodeGen/X86/fastcc-sret.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep ret | not grep 4 +; RUN: llvm-as < %s | llc -march=x86 -tailcallopt=false | grep ret | not grep 4 %struct.foo = type { [4 x i32] } |

