about summary refs log tree commit diff
path: root/src/test/run-make/debug-assertions/debug.rs
diff options
context:
space:
mode:
authorJames Miller <james@aatch.net>2016-04-29 00:08:01 +1200
committerEduard Burtescu <edy.burt@gmail.com>2016-06-05 14:02:24 +0300
commitbcdb2602f8c4f6952f47c78cf41db0ad8223b929 (patch)
tree4e8810366d6043722a048d278cdba9af425a2f81 /src/test/run-make/debug-assertions/debug.rs
parentf2c983b248dff67da3f772af0df1483a5accc258 (diff)
downloadrust-bcdb2602f8c4f6952f47c78cf41db0ad8223b929.tar.gz
rust-bcdb2602f8c4f6952f47c78cf41db0ad8223b929.zip
Enable the overflow-related tests for MIR
Diffstat (limited to 'src/test/run-make/debug-assertions/debug.rs')
-rw-r--r--src/test/run-make/debug-assertions/debug.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/run-make/debug-assertions/debug.rs b/src/test/run-make/debug-assertions/debug.rs
index fb54161c2c1..65682cb86c3 100644
--- a/src/test/run-make/debug-assertions/debug.rs
+++ b/src/test/run-make/debug-assertions/debug.rs
@@ -37,7 +37,6 @@ fn debug_assert() {
 }
 
 fn overflow() {
-    #[rustc_no_mir] // FIXME #29769 MIR overflow checking is TBD.
     fn add(a: u8, b: u8) -> u8 { a + b }
 
     add(200u8, 200u8);