From: Dan Gohman Date: Fri, 12 Oct 2007 20:42:14 +0000 (+0000) Subject: Fix this test to not depend on the assembly output containing something X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dfb6f13a458c7c06b45eb8c9800825059cb92bea;p=oota-llvm.git 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 --- diff --git a/test/CodeGen/X86/fp_constant_op.llx b/test/CodeGen/X86/fp_constant_op.llx index 209a4113705..89cc831a78a 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.