blob: 1d1b1f702deb2983df98a077a0d70b549943316a [file] [log] [blame]
Misha Brukmane78760e2003-09-16 15:29:54 +00001; RUN: llvm-as < %s | opt -sccp | llvm-dis | not grep '%X'
Chris Lattnereabb4952002-08-30 23:22:15 +00002
3%G = uninitialized global [40x int]
4
5implementation
6
7int* %test() {
8 %X = getelementptr [40x int]* %G, uint 0, uint 0
9 ret int* %X
10}