diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-05-26 20:18:56 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-05-26 20:18:56 +0000 |
commit | 3d92dff92f8d3099215fe2117c3de8c37852070b (patch) | |
tree | 73ad1dfbdf73bcbe811075eb18b235364628d6ef /test | |
parent | 0cc9058a792d86876b5ea532eb8be6842b407123 (diff) | |
download | external_llvm-3d92dff92f8d3099215fe2117c3de8c37852070b.zip external_llvm-3d92dff92f8d3099215fe2117c3de8c37852070b.tar.gz external_llvm-3d92dff92f8d3099215fe2117c3de8c37852070b.tar.bz2 |
The Linux ABI emits an extra "movl %esp, %ebp" in function prologue and
sometimes a "mov %ebp, %esp" in the epilogue.
Force these tests that rely on counting 'mov' to use i686-apple-darwin8.8.0
where they were written.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/memcpy-2.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/memset.ll | 4 | ||||
-rw-r--r-- | test/CodeGen/X86/pmul.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/vec_shuffle-18.ll | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/X86/memcpy-2.ll b/test/CodeGen/X86/memcpy-2.ll index 972f55d..0fccc35 100644 --- a/test/CodeGen/X86/memcpy-2.ll +++ b/test/CodeGen/X86/memcpy-2.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse | grep mov | count 7 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep mov | count 5 +; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse -mtriple=i686-apple-darwin8.8.0 | grep mov | count 7 +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse -mtriple=i686-apple-darwin8.8.0 | grep mov | count 5 %struct.ParmT = type { [25 x i8], i8, i8* } @.str12 = internal constant [25 x i8] c"image\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00" ; <[25 x i8]*> [#uses=1] diff --git a/test/CodeGen/X86/memset.ll b/test/CodeGen/X86/memset.ll index eeaaf51..564174c 100644 --- a/test/CodeGen/X86/memset.ll +++ b/test/CodeGen/X86/memset.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse | grep mov | count 9 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep mov | count 3 +; RUN: llvm-as < %s | llc -march=x86 -mattr=-sse -mtriple=i686-apple-darwin8.8.0 | grep mov | count 9 +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse -mtriple=i686-apple-darwin8.8.0 | grep mov | count 3 %struct.x = type { i16, i16 } diff --git a/test/CodeGen/X86/pmul.ll b/test/CodeGen/X86/pmul.ll index 3af47f6..2856d33 100644 --- a/test/CodeGen/X86/pmul.ll +++ b/test/CodeGen/X86/pmul.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=sse41 > %t +; RUN: llvm-as < %s | llc -march=x86 -mattr=sse41 -mtriple=i686-apple-darwin8.8.0 > %t ; RUN: grep pmul %t | count 6 ; RUN: grep mov %t | count 8 diff --git a/test/CodeGen/X86/vec_shuffle-18.ll b/test/CodeGen/X86/vec_shuffle-18.ll index 5e05690..8539263 100644 --- a/test/CodeGen/X86/vec_shuffle-18.ll +++ b/test/CodeGen/X86/vec_shuffle-18.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep mov | count 7 +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -mtriple=i686-apple-darwin8.8.0 | grep mov | count 7 %struct.vector4_t = type { <4 x float> } |