[AArch64 MachineCombine] Enhance/Add support for general reassociation to reduce...
[oota-llvm.git] / test / Other / 2004-08-16-PackedGlobalConstant.ll
index 638e862cc6f637186461e41783c6c883c93236d6..4f15c9ef42738abd123c3bd135e5f84e47725677 100644 (file)
@@ -1,13 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | llvm-dis
+; RUN: llvm-as < %s | llvm-dis
 
-%foo = global <2 x int> <int 0, int 1>;
-%bar = uninitialized global <2 x int>;
+@foo = global <2 x i32> < i32 0, i32 1 >                ; <<2 x i32>*> [#uses=1]
+@bar = external global <2 x i32>                ; <<2 x i32>*> [#uses=1]
 
-implementation   ; Functions:
-
-void %main()
-{
-       %t0 = load <2 x int>* %foo;
-       store <2 x int> %t0, <2 x int>* %bar   
-       ret void
+define void @main() {
+        %t0 = load <2 x i32>, <2 x i32>* @foo              ; <<2 x i32>> [#uses=1]
+        store <2 x i32> %t0, <2 x i32>* @bar
+        ret void
 }
+