Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. void foo() { while (1) { } }
  2.  
  3. int main() {
  4. foo();
  5. __builtin_unreachable();
  6. }
  7.  
  8. define void @foo() local_unnamed_addr #0 {
  9. br label %1
  10.  
  11. ; <label>:1: ; preds = %0, %1
  12. br label %1
  13. }
  14.  
  15. ; Function Attrs: norecurse noreturn nounwind readnone ssp uwtable
  16. define i32 @main() local_unnamed_addr #0 {
  17. unreachable
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement