mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2025-02-21 06:29:21 +00:00
11 lines
113 B
LLVM
11 lines
113 B
LLVM
@X = external global i32
|
|
|
|
declare i32 @foo()
|
|
|
|
define void @bar() {
|
|
load i32* @X
|
|
call i32 @foo()
|
|
ret void
|
|
}
|
|
|