Home | History | Annotate | Download | only in Inline
      1 ; RUN: opt < %s -inline -disable-output
      2 
      3 define i32 @main() {
      4 entry:
      5         invoke void @__main( )
      6                         to label %LongJmpBlkPre unwind label %LongJmpBlkPre
      7 
      8 LongJmpBlkPre:          ; preds = %entry, %entry
      9         %i.3 = phi i32 [ 0, %entry ], [ 0, %entry ]             ; <i32> [#uses=0]
     10         ret i32 0
     11 }
     12 
     13 define void @__main() {
     14         ret void
     15 }
     16 
     17