Switch dev backend from unimplemented! to todo!

This commit is contained in:
Brendan Hansknecht 2021-12-09 10:39:43 -08:00
parent 1ce648ac27
commit 7abbf3a043
5 changed files with 83 additions and 116 deletions

View file

@ -104,7 +104,7 @@ pub fn build_module<'a>(
),
)
}
x => unimplemented!("the target, {:?}, is not yet implemented", x),
x => todo!("the target, {:?}", x),
}
}
@ -157,7 +157,7 @@ fn generate_wrapper<'a, B: Backend<'a>>(
Err(e) => internal_error!("{:?}", e),
}
} else {
unimplemented!("failed to find fn symbol for {:?}", wraps);
internal_error!("failed to find fn symbol for {:?}", wraps);
}
}