mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
9 lines
181 B
LLVM
9 lines
181 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
|
|
}
|
|
|