blob: c0819c0c6480315ab98532f39ec2cfe2b62a7410 [file] [log] [blame]
Chris Lattner904697e2004-10-07 19:16:26 +00001; RUN: llvm-as < %s | 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}