diff options
| author | Dan Gohman <gohman@apple.com> | 2007-10-12 20:42:14 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2007-10-12 20:42:14 +0000 |
| commit | e0ad9ea7cd85a2329d28eb40d3aad39267c9832a (patch) | |
| tree | 52a9e17da1c9d9c52d94709d30c3ef7ca382ef73 | |
| parent | 2c06f7ea45843eade8e5428cf13833dc7cd9c242 (diff) | |
| download | bcm5719-llvm-e0ad9ea7cd85a2329d28eb40d3aad39267c9832a.tar.gz bcm5719-llvm-e0ad9ea7cd85a2329d28eb40d3aad39267c9832a.zip | |
Fix this test to not depend on the assembly output containing something
that includes the string "st". This probably fixes the regression on
Darwin.
llvm-svn: 42932
| -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 209a4113705..89cc831a78a 100644 --- a/llvm/test/CodeGen/X86/fp_constant_op.llx +++ b/llvm/test/CodeGen/X86/fp_constant_op.llx @@ -1,5 +1,5 @@ ; 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} +; RUN: grep {fadd\\|fsub\\|fdiv\\|fmul} | not grep -i ST ; Test that the load of the constant is folded into the operation. |

