Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upUse rustc's compiler error macros. #32
Comments
solson
added
the
refactor
label
Jun 20, 2016
solson
modified the milestone:
Things to do before adding miri to rustc
Aug 17, 2016
oli-obk
referenced this issue
Sep 6, 2016
Merged
replace all `unreachable!` and `panic!` calls with `bug!` #47
solson
closed this
in
#47
Sep 7, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
solson commentedJun 20, 2016
•
edited
Miri should use rustc's compiler error macros to ease the eventual merge into rustc itself.
So, instead of
panic!orunimplemented!, usespan_bug!,bug!, etc. I believe these come from#[macro_use] extern crate rustc;.Prompted by #28 (comment).