brintos

brintos / llvm-project-archived public Read only

0
0
Text · 372 B · 7cdb484 Raw
16 lines · plain
1; Check that we can execute a program that makes a single reference to an2; internal linkage global variable that is zero-initialized.3;4; Failure may indicate a problem with zero-initialized sections, or data5; sections more generally.6;7; RUN: %lli %s8 9@X = internal global i32 010 11define i32 @main(i32 %argc, i8** %argv) {12entry:13  %0 = load i32, i32* @X14  ret i32 %015}16