brintos

brintos / llvm-project-archived public Read only

0
0
Text · 352 B · 895410d Raw
17 lines · plain
1; REQUIRES: system-windows2; RUN: lli -jit-kind=orc-lazy -extra-module %p/Inputs/comdat-functions.ll %s3; Check if crashing comdat any functions are not causing duplicate symbol error.4 5$baz = comdat any6 7define i32 @baz() comdat {8entry:9  ret i32 010}11 12define i32 @main(i32 %argc, i8** %argv) {13entry:14  %call = tail call i32 @baz()15  ret i32 %call16}17