diff options
author | Dale Johannesen <dalej@apple.com> | 2007-09-23 14:58:14 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-09-23 14:58:14 +0000 |
commit | 7838838de6bc5bfb20c3e91ec0bf51fdc0ef9269 (patch) | |
tree | 85acf6efb5fdc790c3f3b3af6e08dafba6da455f /test/CodeGen/X86 | |
parent | e0e0fd0c2407f6cfeb591da64ad44b10ed5d6d54 (diff) | |
download | external_llvm-7838838de6bc5bfb20c3e91ec0bf51fdc0ef9269.zip external_llvm-7838838de6bc5bfb20c3e91ec0bf51fdc0ef9269.tar.gz external_llvm-7838838de6bc5bfb20c3e91ec0bf51fdc0ef9269.tar.bz2 |
Implementation of +sse -sse2 has changed; add
-sse to preserve intent of this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42247 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r-- | test/CodeGen/X86/fabs.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fabs.ll b/test/CodeGen/X86/fabs.ll index 4b58862..fd7585b 100644 --- a/test/CodeGen/X86/fabs.ll +++ b/test/CodeGen/X86/fabs.ll @@ -1,8 +1,8 @@ ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf -; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=-sse2,-sse3 | \ +; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=-sse2,-sse3,-sse | \ ; RUN: grep fabs\$ | count 1 ; RUN: llvm-upgrade < %s | llvm-as | \ -; RUN: llc -march=x86 -mattr=-sse2,-sse3 -enable-unsafe-fp-math | \ +; RUN: llc -march=x86 -mattr=-sse,-sse2,-sse3 -enable-unsafe-fp-math | \ ; RUN: grep fabs\$ | count 2 target endian = little |