Mercurial > hg > CbC > CbC_llvm
comparison llvm/test/Feature/load_extension.ll @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 0572611fdcc8 |
comparison
equal
deleted
inserted
replaced
147:c2174574ed3a | 150:1d019706d866 |
---|---|
1 ; This is currently failing on multiple platforms. Disable while investigation occurs. | |
2 ; UNSUPPORTED: darwin | |
3 | |
4 ; RUN: opt %s %loadbye -goodbye -wave-goodbye -disable-output 2>&1 | FileCheck %s | |
5 ; REQUIRES: plugins, examples | |
6 ; CHECK: Bye | |
7 | |
8 @junk = global i32 0 | |
9 | |
10 define i32* @somefunk() { | |
11 ret i32* @junk | |
12 } | |
13 |