AMDGPU: Allow f16/bf16 for DS_READ_TR16_B64 gfx950 builtins (#118297)
[llvm-project.git] / llvm / test / ExecutionEngine / OrcLazy / weak-function.ll
bloba96feedb4d8e5e674e674ac9d10563500ddcaa32
1 ; RUN: lli -jit-kind=orc-lazy -extra-module %p/Inputs/weak-function-2.ll %s
3 ; Check that functions in two different modules agree on the address of weak
4 ; function 'baz'
6 define linkonce_odr i32 @baz() {
7 entry:
8   ret i32 0
11 define ptr @foo() {
12 entry:
13   ret ptr @baz
16 declare ptr @bar()
18 define i32 @main(i32 %argc, ptr %argv) {
19 entry:
20   %call = tail call ptr @foo()
21   %call1 = tail call ptr @bar()
22   %cmp = icmp ne ptr %call, %call1
23   %conv = zext i1 %cmp to i32
24   ret i32 %conv