[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / ExecutionEngine / OrcMCJIT / weak-function.ll
blob75ad2c7cfb2c696a85cea719263635577f1670f6
1 ; RUN: lli -jit-kind=orc-mcjit -extra-module %p/Inputs/weak-function-2.ll %s
2 ; UNSUPPORTED: uses_COFF
4 ; Check that functions in two different modules agree on the address of weak
5 ; function 'baz'.
6 ; Testing on COFF platforms is disabled as COFF has no representation of 'weak'
7 ; linkage.
9 define weak i32 @baz() {
10 entry:
11   ret i32 0
14 define i8* @foo() {
15 entry:
16   ret i8* bitcast (i32 ()* @baz to i8*)
19 declare i8* @bar()
21 define i32 @main(i32 %argc, i8** %argv) {
22 entry:
23   %call = tail call i8* @foo()
24   %call1 = tail call i8* @bar()
25   %cmp = icmp ne i8* %call, %call1
26   %conv = zext i1 %cmp to i32
27   ret i32 %conv