[llvm-commits] [llvm] r106454 - /llvm/trunk/test/CodeGen/X86/vec_shuffle-6.ll

Dan Gohman gohman at apple.com
Mon Jun 21 12:56:28 PDT 2010


Author: djg
Date: Mon Jun 21 14:56:27 2010
New Revision: 106454

URL: http://llvm.org/viewvc/llvm-project?rev=106454&view=rev
Log:
Make this test more robust in case LLVM ever decides to align the global
variable differently.

Modified:
    llvm/trunk/test/CodeGen/X86/vec_shuffle-6.ll

Modified: llvm/trunk/test/CodeGen/X86/vec_shuffle-6.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_shuffle-6.ll?rev=106454&r1=106453&r2=106454&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_shuffle-6.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vec_shuffle-6.ll Mon Jun 21 14:56:27 2010
@@ -4,7 +4,7 @@
 ; RUN: grep movups %t | count 2
 
 target triple = "i686-apple-darwin"
- at x = global [4 x i32] [ i32 1, i32 2, i32 3, i32 4 ]		; <[4 x i32]*> [#uses=4]
+ at x = external global [4 x i32]
 
 define <2 x i64> @test1() {
 	%tmp = load i32* getelementptr ([4 x i32]* @x, i32 0, i32 0)		; <i32> [#uses=1]





More information about the llvm-commits mailing list