mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
ac0fd59c9c
This is a followup to r360991 which applies the same logic to LLVM. Differential Revision: https://reviews.llvm.org/D62050 llvm-svn: 360993
13 lines
277 B
LLVM
13 lines
277 B
LLVM
; PR1318
|
|
; RUN: opt < %s -load=%llvmshlibdir/LLVMHello%shlibext -hello \
|
|
; RUN: -disable-output 2>&1 | grep Hello
|
|
; REQUIRES: plugins
|
|
; FIXME: On Cygming, it might fail without building LLVMHello manually.
|
|
|
|
@junk = global i32 0
|
|
|
|
define i32* @somefunk() {
|
|
ret i32* @junk
|
|
}
|
|
|