diff options
author | Dan Gohman <djg@cray.com> | 2007-10-12 20:42:14 +0000 |
---|---|---|
committer | Dan Gohman <djg@cray.com> | 2007-10-12 20:42:14 +0000 |
commit | b5afbcbaba2c7645a222bf6dc3c6b79e99c09568 (patch) | |
tree | 9855696ad88604bf3fe5bc279ed05e842ae791f7 /test/CodeGen | |
parent | 136fb907b42f1616ace3cabb45ac3a01a58f1288 (diff) | |
download | external_llvm-b5afbcbaba2c7645a222bf6dc3c6b79e99c09568.zip external_llvm-b5afbcbaba2c7645a222bf6dc3c6b79e99c09568.tar.gz external_llvm-b5afbcbaba2c7645a222bf6dc3c6b79e99c09568.tar.bz2 |
Fix this test to not depend on the assembly output containing something
that includes the string "st". This probably fixes the regression on
Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/fp_constant_op.llx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/fp_constant_op.llx b/test/CodeGen/X86/fp_constant_op.llx index 209a411..89cc831 100644 --- a/test/CodeGen/X86/fp_constant_op.llx +++ b/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. |