mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
9479b0618c
Local testing on OSX no longer exhibit the linking error mentioned in https://reviews.llvm.org/D71959#1860286
11 lines
194 B
LLVM
11 lines
194 B
LLVM
; RUN: opt %s %loadbye -goodbye -wave-goodbye -disable-output 2>&1 | FileCheck %s
|
|
; REQUIRES: plugins, examples
|
|
; CHECK: Bye
|
|
|
|
@junk = global i32 0
|
|
|
|
define i32* @somefunk() {
|
|
ret i32* @junk
|
|
}
|
|
|