Home | History | Annotate | Download | only in PruneEH
      1 ; RUN: opt < %s -prune-eh -S | not grep nounwind
      2 
      3 define weak void @f() {
      4 entry:
      5         ret void
      6 }
      7 
      8 define void @g() {
      9 entry:
     10 	call void @f()
     11 	ret void
     12 }
     13