aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-10-12 20:42:14 +0000
committerDan Gohman <gohman@apple.com>2007-10-12 20:42:14 +0000
commitdfb6f13a458c7c06b45eb8c9800825059cb92bea (patch)
tree9855696ad88604bf3fe5bc279ed05e842ae791f7
parent7b9e1d251f2e7d8481e1cfcd72b8c2f0ffa244ef (diff)
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
-rw-r--r--test/CodeGen/X86/fp_constant_op.llx2
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 209a411370..89cc831a78 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.