llvm-6502/test/Transforms/GlobalOpt/deadglobal.ll
2009-09-08 22:34:10 +00:00

10 lines
179 B
LLVM

; RUN: opt %s -globalopt -S | not grep internal
@G = internal global i32 123 ; <i32*> [#uses=1]
define void @foo() {
store i32 1, i32* @G
ret void
}