Remove explicit control flow through the use of the 'not' script
[oota-llvm.git] / test / Transforms / SCCP / 2002-08-30-GetElementPtrTest.ll
1 ; RUN: as < %s | opt -sccp | dis | not grep '%X'
2
3 %G = uninitialized global [40x int]
4
5 implementation
6
7 int* %test() {
8         %X = getelementptr [40x int]* %G, uint 0, uint 0
9         ret int* %X
10 }