Bump rust-sysroot to v0.13 (#14001)

This commit is contained in:
Jack May
2020-12-07 13:26:12 -08:00
committed by GitHub
parent 38485489c9
commit be0f9d4837
14 changed files with 104 additions and 40 deletions

View File

@@ -203,12 +203,12 @@ fn process_instruction(
macro_rules! check {
($left:expr, $right:expr) => {
if $left != $right {
msg!(&format!(
msg!(
"Condition failure: {:?} != {:?} at line {:?}",
$left,
$right,
line!()
));
);
return Err(ProgramError::Custom(0));
}
};