trace: Break on RBP OVERFLOW

There's not point in continuing the loop once this occurs. It just
results in printing 'RBP OVERFLOW' repeatedly.
This commit is contained in:
Ian Douglas Scott
2018-08-08 12:35:04 -07:00
parent 875d89cef8
commit 8455d2bad4

View File

@@ -30,6 +30,7 @@ pub unsafe fn stack_trace() {
}
} else {
println!(" {:>016X}: RBP OVERFLOW", rbp);
break;
}
}
}