mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
0899957b99
needed since llvm-gcc 3.4 days. llvm-svn: 133248
20 lines
364 B
LLVM
20 lines
364 B
LLVM
; Test to make sure that the 'private' is used correctly.
|
|
;
|
|
; RUN: llc < %s -march=sparc > %t
|
|
; RUN: grep .foo: %t
|
|
; RUN: grep call.*\.foo %t
|
|
; RUN: grep .baz: %t
|
|
; RUN: grep ld.*\.baz %t
|
|
|
|
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
|
|
}
|