[llvm-commits] [llvm] r85637 - /llvm/trunk/test/CodeGen/X86/palignr-2.ll

Dan Gohman gohman at apple.com
Fri Oct 30 16:18:27 PDT 2009


Author: djg
Date: Fri Oct 30 18:18:27 2009
New Revision: 85637

URL: http://llvm.org/viewvc/llvm-project?rev=85637&view=rev
Log:
Fix the -mattr line for this test so that it passes on hosts that lack SSSE3.

Modified:
    llvm/trunk/test/CodeGen/X86/palignr-2.ll

Modified: llvm/trunk/test/CodeGen/X86/palignr-2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/palignr-2.ll?rev=85637&r1=85636&r2=85637&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/palignr-2.ll (original)
+++ llvm/trunk/test/CodeGen/X86/palignr-2.ll Fri Oct 30 18:18:27 2009
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 -mattr=+sse3 | FileCheck %s
+; RUN: llc < %s -march=x86 -mattr=+ssse3 | FileCheck %s
 ; rdar://7341330
 
 @a = global [4 x i32] [i32 4, i32 5, i32 6, i32 7], align 16 ; <[4 x i32]*> [#uses=1]





More information about the llvm-commits mailing list