From: Reid Spencer Date: Mon, 16 Apr 2007 14:20:28 +0000 (+0000) Subject: For PR1336: X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bc243932a39a019be11b9c3fbd96f27506f038cf;p=oota-llvm.git For PR1336: Ignore case for instruction mnemonic comparison. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36129 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/fp_constant_op.llx b/test/CodeGen/X86/fp_constant_op.llx index 155673fcd72..a3c7281f464 100644 --- a/test/CodeGen/X86/fp_constant_op.llx +++ b/test/CodeGen/X86/fp_constant_op.llx @@ -1,6 +1,5 @@ ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \ -; RUN: grep ST | not grep {fadd\\|fsub\\|fdiv\\|fmul} -; XFAIL: * +; RUN: grep -i ST | not grep {fadd\\|fsub\\|fdiv\\|fmul} ; Test that the load of the constant is folded into the operation. diff --git a/test/CodeGen/X86/fp_load_fold.llx b/test/CodeGen/X86/fp_load_fold.llx index ce272cea093..91f41f6be49 100644 --- a/test/CodeGen/X86/fp_load_fold.llx +++ b/test/CodeGen/X86/fp_load_fold.llx @@ -1,6 +1,5 @@ ; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | \ -; RUN: grep ST | not grep {fadd\\|fsub\\|fdiv\\|fmul} -; XFAIL: * +; RUN: grep -i ST | not grep {fadd\\|fsub\\|fdiv\\|fmul} ; Test that the load of the memory location is folded into the operation.