diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-10-06 13:52:41 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-10-06 13:52:41 +0000 |
commit | fb7cb838b9f99317e80815f74d1baba530086569 (patch) | |
tree | 5bf00aadf643a181ecf84c1a4e90cfe0e16896ba /test | |
parent | d9f7a185e31d70a81775eb88db33c74b92b14697 (diff) | |
download | external_llvm-fb7cb838b9f99317e80815f74d1baba530086569.zip external_llvm-fb7cb838b9f99317e80815f74d1baba530086569.tar.gz external_llvm-fb7cb838b9f99317e80815f74d1baba530086569.tar.bz2 |
Force a CPU that doesn't have AVX, otherwise this test fails.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192065 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/unaligned-spill-folding.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/unaligned-spill-folding.ll b/test/CodeGen/X86/unaligned-spill-folding.ll index af0c59b..154ce9e 100644 --- a/test/CodeGen/X86/unaligned-spill-folding.ll +++ b/test/CodeGen/X86/unaligned-spill-folding.ll @@ -1,6 +1,6 @@ -; RUN: llc -mtriple=i386-unknown-freebsd -mattr=sse2 -stack-alignment=4 -relocation-model=pic < %s | FileCheck %s -check-prefix=UNALIGNED -; RUN: llc -mtriple=i386-unknown-freebsd -mattr=sse2 -stack-alignment=16 -relocation-model=pic < %s | FileCheck %s -check-prefix=ALIGNED -; RUN: llc -mtriple=i386-unknown-freebsd -mattr=sse2 -stack-alignment=4 -force-align-stack -relocation-model=pic < %s | FileCheck %s -check-prefix=FORCEALIGNED +; RUN: llc -mtriple=i386-unknown-freebsd -mcpu=core2 -stack-alignment=4 -relocation-model=pic < %s | FileCheck %s -check-prefix=UNALIGNED +; RUN: llc -mtriple=i386-unknown-freebsd -mcpu=core2 -stack-alignment=16 -relocation-model=pic < %s | FileCheck %s -check-prefix=ALIGNED +; RUN: llc -mtriple=i386-unknown-freebsd -mcpu=core2 -stack-alignment=4 -force-align-stack -relocation-model=pic < %s | FileCheck %s -check-prefix=FORCEALIGNED @arr = internal unnamed_addr global [32 x i32] zeroinitializer, align 16 |