2009-01-15 20:18:42 +00:00
|
|
|
; Test to make sure that the 'private' is used correctly.
|
|
|
|
;
|
2009-08-23 17:26:24 +00:00
|
|
|
; RUN: llvm-as < %s | llc -mtriple=powerpc-unknown-linux-gnu > %t
|
|
|
|
; RUN: grep .Lfoo: %t
|
|
|
|
; RUN: grep bl.*\.Lfoo %t
|
|
|
|
; RUN: grep .Lbaz: %t
|
|
|
|
; RUN: grep lis.*\.Lbaz %t
|
|
|
|
; RUN: llvm-as < %s | llc -mtriple=powerpc-apple-darwin > %t
|
|
|
|
; RUN: grep L_foo: %t
|
|
|
|
; RUN: grep bl.*\L_foo %t
|
|
|
|
; RUN: grep L_baz: %t
|
|
|
|
; RUN: grep lis.*\L_baz %t
|
2009-01-15 20:18:42 +00:00
|
|
|
|
2009-07-14 04:50:12 +00:00
|
|
|
define private void @foo() nounwind {
|
2009-01-15 20:18:42 +00:00
|
|
|
ret void
|
2009-08-23 10:44:51 +00:00
|
|
|
}
|
2009-07-23 00:09:46 +00:00
|
|
|
|
2009-08-23 17:26:24 +00:00
|
|
|
@baz = private global i32 4;
|
|
|
|
|
2009-07-14 04:50:12 +00:00
|
|
|
define i32 @bar() nounwind {
|
2009-01-15 20:18:42 +00:00
|
|
|
call void @foo()
|
|
|
|
%1 = load i32* @baz, align 4
|
|
|
|
ret i32 %1
|
|
|
|
}
|