diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-01-27 22:51:51 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-01-27 22:51:51 +0000 |
commit | 992694418b99d36bbbb0226390965b7008d55e73 (patch) | |
tree | 8f4c697ec2766425945148295a32c5a847c4fa86 /test/CodeGen | |
parent | 184cc4ac60dc853fac3baa5e96d5f662d311b2fb (diff) | |
download | external_llvm-992694418b99d36bbbb0226390965b7008d55e73.zip external_llvm-992694418b99d36bbbb0226390965b7008d55e73.tar.gz external_llvm-992694418b99d36bbbb0226390965b7008d55e73.tar.bz2 |
Use Intel assembly syntax to look for ST
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/fp_constant_op.llx | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/fp_load_fold.llx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fp_constant_op.llx b/test/CodeGen/X86/fp_constant_op.llx index 2b645e0..d241235 100644 --- a/test/CodeGen/X86/fp_constant_op.llx +++ b/test/CodeGen/X86/fp_constant_op.llx @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep ST | not grep 'fadd\|fsub\|fdiv\|fmul' +; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | grep 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 7ce437d..7e89edf 100644 --- a/test/CodeGen/X86/fp_load_fold.llx +++ b/test/CodeGen/X86/fp_load_fold.llx @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep ST | not grep 'fadd\|fsub\|fdiv\|fmul' +; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | grep ST | not grep 'fadd\|fsub\|fdiv\|fmul' ; Test that the load of the memory location is folded into the operation. |