summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-16 14:20:28 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-16 14:20:28 +0000
commitbc243932a39a019be11b9c3fbd96f27506f038cf (patch)
tree350ae4c4bf956157ce0bafe7ca07532f6b338c72 /test
parent97d7a588a83ba182d7beda8c4b21acaced61739c (diff)
downloadllvm-bc243932a39a019be11b9c3fbd96f27506f038cf.tar.gz
llvm-bc243932a39a019be11b9c3fbd96f27506f038cf.tar.bz2
llvm-bc243932a39a019be11b9c3fbd96f27506f038cf.tar.xz
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
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/fp_constant_op.llx3
-rw-r--r--test/CodeGen/X86/fp_load_fold.llx3
2 files changed, 2 insertions, 4 deletions
diff --git a/test/CodeGen/X86/fp_constant_op.llx b/test/CodeGen/X86/fp_constant_op.llx
index 155673fcd7..a3c7281f46 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 ce272cea09..91f41f6be4 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.