1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/Feature/load_extension.ll
serge-sans-paille f308ea9212 Activate extension loading test on Darwin now that the underlying fix has landed
Original bug fixed by ab2300bc154f7bed43f85f74fd3fe31be71d90e0
2020-01-30 14:04:27 +01:00

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
}