Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ExecutionEngine / Orc / trivial-call-to-internal-function.ll
blobc472ae0f038ad37d130b99c3e35d8199c0b1ca1c
1 ; Check that we can execute a program that makes a single call to an internal
2 ; linkage function that returns zero.
4 ; Failure may indicate a problem with branch relocation handling in the JIT
5 ; linker.
7 ; RUN: %lli %s
9 define internal i32 @foo() {
10   ret i32 0
13 define i32 @main(i32 %argc, i8** %argv) {
14 entry:
15   %0 = call i32 @foo()
16   ret i32 %0