Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / CellSPU / private.ll
blob56f72e75b16abd409b70c5df96c01d5338f90722
1 ; Test to make sure that the 'private' is used correctly.
3 ; RUN: llc < %s -march=cellspu > %t
4 ; RUN: grep .Lfoo: %t
5 ; RUN: grep brsl.*\.Lfoo %t
6 ; RUN: grep .Lbaz: %t
7 ; RUN: grep ila.*\.Lbaz %t
10 declare void @foo()
12 define private void @foo() {
13         ret void
16 @baz = private global i32 4
18 define i32 @bar() {
19         call void @foo()
20         %1 = load i32* @baz, align 4
21         ret i32 %1