2008-09-08-CGUpdateSelfEdge.ll 597 B

12345678910111213141516171819202122232425
  1. ; RUN: opt < %s -argpromotion -disable-output
  2. define internal fastcc i32 @term_SharingList(i32* %Term, i32* %List) nounwind {
  3. entry:
  4. br i1 false, label %bb, label %bb5
  5. bb: ; preds = %entry
  6. %0 = call fastcc i32 @term_SharingList( i32* null, i32* %List ) nounwind ; <i32> [#uses=0]
  7. unreachable
  8. bb5: ; preds = %entry
  9. ret i32 0
  10. }
  11. define i32 @term_Sharing(i32* %Term) nounwind {
  12. entry:
  13. br i1 false, label %bb.i, label %bb14
  14. bb.i: ; preds = %entry
  15. %0 = call fastcc i32 @term_SharingList( i32* null, i32* null ) nounwind ; <i32> [#uses=0]
  16. ret i32 1
  17. bb14: ; preds = %entry
  18. ret i32 0
  19. }