diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-09 17:35:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-09 17:35:18 +0000 |
commit | 318ff8dd942b20d29feb719137d25e34ce58fde9 (patch) | |
tree | 3fe33be64b038c6156a38e1013e998e1946c0485 | |
parent | 09374780736c3fa02a3838aa04dfd91b8cc00613 (diff) | |
download | bcm5719-llvm-318ff8dd942b20d29feb719137d25e34ce58fde9.tar.gz bcm5719-llvm-318ff8dd942b20d29feb719137d25e34ce58fde9.zip |
force a cpu without SSE
llvm-svn: 38466
-rw-r--r-- | llvm/test/CodeGen/X86/fp_constant_op.llx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/fp_constant_op.llx b/llvm/test/CodeGen/X86/fp_constant_op.llx index a3c7281f464..30e06c00ca2 100644 --- a/llvm/test/CodeGen/X86/fp_constant_op.llx +++ b/llvm/test/CodeGen/X86/fp_constant_op.llx @@ -1,4 +1,4 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \ +; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel -mcpu=i486 | \ ; RUN: grep -i ST | not grep {fadd\\|fsub\\|fdiv\\|fmul} ; Test that the load of the constant is folded into the operation. |