Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ExecutionEngine / Orc / trivial-reference-to-global-variable.ll
blobf6096367b2dfa2a7448fc89b4df619971e639490
1 ; Check that we can execute a program that makes a single reference to an
2 ; external linkage global variable that is initialized to a non-zero value.
4 ; Failure may indicate a problem with data-section or GOT handling.
6 ; RUN: %lli %s
8 @X = global i32 1
10 define i32 @main(i32 %argc, i8** %argv) {
11 entry:
12   %0 = load i32, i32* @X
13   %1 = icmp ne i32 %0, 1
14   %2 = zext i1 %1 to i32
15   ret i32 %2