Home | History | Annotate | Download | only in OrcLazy
      1 ; RUN: lli -jit-kind=orc-lazy %s
      2 
      3 define private void @_ZL3foov() {
      4 entry:
      5   ret void
      6 }
      7 
      8 define i32 @main(i32 %argc, i8** nocapture readnone %argv) {
      9 entry:
     10   tail call void @_ZL3foov()
     11   ret i32 0
     12 }
     13