Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -mtriple=i686-pc-linux-gnu -disable-fp-elim | not grep {addl .12, %esp}
      2 ; PR1398
      3 
      4 	%struct.S = type { i32, i32 }
      5 
      6 declare void @invokee(%struct.S* sret )
      7 
      8 define void @invoker(%struct.S* %name.0.0) {
      9 entry:
     10 	invoke void @invokee( %struct.S* sret %name.0.0   )
     11 			to label %return unwind label %return
     12 
     13 return:		; preds = %entry, %entry
     14 	ret void
     15 }
     16