mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
260356bbcf
llvm-svn: 35937
12 lines
216 B
LLVM
12 lines
216 B
LLVM
; PR1318
|
|
; RUN: llvm-as < %s > %t.bc &&
|
|
; RUN: opt -load=%llvmlibsdir/LLVMHello%shlibext -hello \
|
|
; RUN: -disable-output %t.bc 2>&1 | grep Hello
|
|
|
|
@junk = global i32 0
|
|
|
|
define i32* @somefunk() {
|
|
ret i32* @junk
|
|
}
|
|
|