mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
cd263ad17d
llvm-svn: 8544
14 lines
259 B
LLVM
14 lines
259 B
LLVM
; Make sure that the ds-opt pass is constantizing globals
|
|
;
|
|
; RUN: llvm-as < %s | opt -ds-opt | llvm-dis | grep %G | grep constant
|
|
|
|
|
|
%G = internal global int 0 ; <int*> [#uses=2]
|
|
|
|
implementation ; Functions:
|
|
|
|
int %main() {
|
|
%A = load int* %G
|
|
ret int %A
|
|
}
|