Add encoding for VSTR.
[oota-llvm.git] / test / Transforms / SCCP / 2002-08-30-GetElementPtrTest.ll
index c3c5d70a721bfaace234715230c810877ca0a8d5..6aaf33ec206c3b346b749fd1f0d46e813596a7e1 100644 (file)
@@ -1,13 +1,9 @@
-; RUN: if as < %s | opt -sccp | dis | grep '%X'
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: opt < %s -sccp -S | not grep %X
 
-%G = uninitialized global [40x int]
+@G = external global [40 x i32]                ; <[40 x i32]*> [#uses=1]
 
-implementation
-
-int* %test() {
-       %X = getelementptr [40x int]* %G, uint 0, uint 0
-       ret int* %X
+define i32* @test() {
+       %X = getelementptr [40 x i32]* @G, i64 0, i64 0         ; <i32*> [#uses=1]
+       ret i32* %X
 }
+