12 lines · plain
1; Check that we can execute a program that does nothing and just returns zero.2;3; This is the simplest possible JIT smoke test. If it fails it indicates a4; critical failure in the JIT (e.g. failure to set memory permissions) that's5; likely to affect all programs.6;7; RUN: %lli %s8 9define i32 @main(i32 %argc, i8** %argv) {10 ret i32 011}12