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