mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
f308ea9212
Original bug fixed by ab2300bc154f7bed43f85f74fd3fe31be71d90e0
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
|
|
}
|
|
|