forked from OSchip/llvm-project
14 lines
304 B
LLVM
14 lines
304 B
LLVM
; This is currently failing on multiple platforms. Disable while investigation occurs.
|
|
; UNSUPPORTED: darwin
|
|
|
|
; 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
|
|
}
|
|
|