diff options
author | Dale Johannesen <dalej@apple.com> | 2008-06-10 17:57:58 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-06-10 17:57:58 +0000 |
commit | 287abdb3575fef73630e6d98aa1a1fbf441528ee (patch) | |
tree | e1acdd0b9a0f0cbbfd0b1f62abbe5ae65e297914 /test/CodeGen/X86 | |
parent | 61d858e3f03b3efb483e7ee3d50438707204405e (diff) | |
download | external_llvm-287abdb3575fef73630e6d98aa1a1fbf441528ee.zip external_llvm-287abdb3575fef73630e6d98aa1a1fbf441528ee.tar.gz external_llvm-287abdb3575fef73630e6d98aa1a1fbf441528ee.tar.bz2 |
Fix parameter spelling: sse not sse1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52185 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86')
-rw-r--r-- | test/CodeGen/X86/scalar_sse_minmax.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/scalar_sse_minmax.ll b/test/CodeGen/X86/scalar_sse_minmax.ll index c8c899b..8c030b8 100644 --- a/test/CodeGen/X86/scalar_sse_minmax.ll +++ b/test/CodeGen/X86/scalar_sse_minmax.ll @@ -1,6 +1,6 @@ -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse1,+sse2 | \ +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse,+sse2 | \ ; RUN: grep mins | count 3 -; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse1,+sse2 | \ +; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse,+sse2 | \ ; RUN: grep maxs | count 2 declare i1 @llvm.isunordered.f64(double, double) |