llvm-for-llvmta/test/Linker/Inputs/only-needed-named-metadata.ll

10 lines
115 B
LLVM
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
@X = external global i32
declare i32 @foo()
define void @bar() {
load i32, i32* @X
call i32 @foo()
ret void
}