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 -march=mips > %t
|
2009-01-16 04:18:42 +08:00
|
|
|
; RUN: grep \\\$foo: %t
|
|
|
|
; RUN: grep call.*\\\$foo %t
|
|
|
|
; RUN: grep \\\$baz: %t
|
|
|
|
; RUN: grep lw.*\\\$baz %t
|
|
|
|
|
|
|
|
declare void @foo()
|
|
|
|
|
|
|
|
define private void @foo() {
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
@baz = private global i32 4;
|
|
|
|
|
|
|
|
define i32 @bar() {
|
|
|
|
call void @foo()
|
|
|
|
%1 = load i32* @baz, align 4
|
|
|
|
ret i32 %1
|
|
|
|
}
|