[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / weak-function.ll
blob5dcb1f892a32b696978c254b329be22a5a083534
1 ; RUN: lli -jit-kind=mcjit -extra-module %p/Inputs/weak-function-2.ll %s
2 ; RUN: lli -extra-module %p/Inputs/weak-function-2.ll %s
3 ; UNSUPPORTED: uses_COFF
5 ; Check that functions in two different modules agree on the address of weak
6 ; function 'baz'
7 ; Testing on COFF platforms is disabled as COFF has no representation of 'weak'
8 ; linkage.
10 define weak i32 @baz() {
11 entry:
12   ret i32 0
15 define i8* @foo() {
16 entry:
17   ret i8* bitcast (i32 ()* @baz to i8*)
20 declare i8* @bar()
22 define i32 @main(i32 %argc, i8** %argv) {
23 entry:
24   %call = tail call i8* @foo()
25   %call1 = tail call i8* @bar()
26   %cmp = icmp ne i8* %call, %call1
27   %conv = zext i1 %cmp to i32
28   ret i32 %conv