1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/Generic/global-ret0.ll

9 lines
174 B
LLVM
Raw Normal View History

; RUN: llc < %s
2004-11-06 22:40:51 +01:00
@g = global i32 0 ; <i32*> [#uses=1]
define i32 @main() {
%h = load i32, i32* @g ; <i32> [#uses=1]
ret i32 %h
}