fa7c12f5d8595536af3ca3993e59a76799609439
[oota-llvm.git] / test / Analysis / DSGraph / constantize.ll
1 ; Make sure that the ds-opt pass is constantizing globals
2 ;
3 ; RUN: llvm-as < %s | opt -ds-opt | llvm-dis | grep %G | grep constant
4
5
6 %G = internal global int 0              ; <int*> [#uses=2]
7
8 implementation   ; Functions:
9
10 int %main() {
11         %A = load int* %G
12         ret int %A
13 }