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