Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / ARM / private.ll
blobe5eeccb356a5b7f739935bd1f88a756e70ae781f
1 ; Test to make sure that the 'private' is used correctly.
3 ; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnueabi > %t
4 ; RUN: grep .Lfoo: %t
5 ; RUN: egrep bl.*\.Lfoo %t
6 ; RUN: grep .Lbaz: %t
7 ; RUN: grep long.*\.Lbaz %t
9 declare void @foo()
11 define private void @foo() {
12         ret void
15 @baz = private global i32 4;
17 define i32 @bar() {
18         call void @foo()
19         %1 = load i32* @baz, align 4
20         ret i32 %1