1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/Regression/Analysis/DSGraph/constantize.ll

14 lines
259 B
LLVM
Raw Normal View History

2003-06-28 23:56:22 +02:00
; Make sure that the ds-opt pass is constantizing globals
;
; RUN: llvm-as < %s | opt -ds-opt | llvm-dis | grep %G | grep constant
2003-06-28 23:56:22 +02:00
%G = internal global int 0 ; <int*> [#uses=2]
implementation ; Functions:
int %main() {
%A = load int* %G
ret int %A
}