llvm-project/llvm/test/CodeGen/Generic/global-ret0.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
174 B
LLVM
Raw Normal View History

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