Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / CodeGen / CellSPU / private.ll
blob91567ce82803bb3f9f53c3cd845e024b163616dd
1 ; Test to make sure that the 'private' is used correctly.
3 ; RUN: llvm-as < %s | llc -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