Replace all instances of dg.exp file with lit.local.cfg, since all tests are run...
[oota-llvm.git] / test / Transforms / SCCP / 2002-08-30-GetElementPtrTest.ll
index dad9c7e70d6e22e983c250c68175b3e4a6bbfe59..6aaf33ec206c3b346b749fd1f0d46e813596a7e1 100644 (file)
@@ -1,10 +1,9 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | not grep '%X'
+; 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
 }
+