Skip to content

Commit 75dd959

Browse files
committed
Auto merge of #2557 - RalfJung:triple-to-string, r=RalfJung
remove unnecessary to_string
2 parents 351afbb + c672c35 commit 75dd959

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/machine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ impl<'mir, 'tcx> MiriMachine<'mir, 'tcx> {
464464
clock: Clock::new(config.isolated_op == IsolatedOp::Allow),
465465
#[cfg(unix)]
466466
external_so_lib: config.external_so_file.as_ref().map(|lib_file_path| {
467-
let target_triple = &layout_cx.tcx.sess.opts.target_triple.to_string();
467+
let target_triple = layout_cx.tcx.sess.opts.target_triple.triple();
468468
// Check if host target == the session target.
469469
if env!("TARGET") != target_triple {
470470
panic!(

src/shims/intrinsics/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
365365
"breakpoint" => {
366366
let [] = check_arg_count(args)?;
367367
// normally this would raise a SIGTRAP, which aborts if no debugger is connected
368-
throw_machine_stop!(TerminationInfo::Abort("Trace/breakpoint trap".to_string()))
368+
throw_machine_stop!(TerminationInfo::Abort(format!("Trace/breakpoint trap")))
369369
}
370370

371371
name => throw_unsup_format!("unimplemented intrinsic: `{name}`"),

0 commit comments

Comments
 (0)