xref: /aosp_15_r20/external/llvm/test/CodeGen/Generic/global-ret0.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc < %s
2
3@g = global i32 0               ; <i32*> [#uses=1]
4
5define i32 @main() {
6        %h = load i32, i32* @g               ; <i32> [#uses=1]
7        ret i32 %h
8}
9