blob: a7397bf0fd9c19b48fbfd7dda7631323c1fe40e2 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -globalopt | llvm-dis | not grep internal
2
3%G = internal global int 123
4
5void %foo() {
6 store int 1, int* %G
7 ret void
8}