[ARM] Rewrite how VCMP are lowered, using a single node
[llvm-core.git] / test / ExecutionEngine / OrcMCJIT / pr32650.ll
blobbbf68aea512a0f92275be0f0b3873f509a1d1a30
1 ; RUN: %lli -jit-kind=orc-mcjit %s
3 ; This test is intended to verify that a function weakly defined in
4 ; JITted code, and strongly defined in the main executable, can be
5 ; correctly resolved when called from elsewhere in JITted code.
7 ; This test makes the assumption that the lli executable in compiled
8 ; to export symbols (e.g. --export-dynamic), and that is actually does
9 ; contain the symbol LLVMInitializeCodeGen.  (Note that this function
10 ; is not actually called by the test.  The test simply verifes that
11 ; the reference can be resolved without relocation errors.)
13 define linkonce_odr void @LLVMInitializeCodeGen() {
14 entry:
15   ret void
18 define void @test() {
19 entry:
20   call void @LLVMInitializeCodeGen()
21   ret void
24 define i32 @main() {
25 entry:
26   ret i32 0