From bed073fac0e5f75fe877e27c8499b9cede47e11f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 3 Oct 2018 22:42:54 -0700 Subject: [PATCH] Fix copy+pastos in debug messages. --- cranelift/src/compile.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cranelift/src/compile.rs b/cranelift/src/compile.rs index 708763e7b3..5a93daa5a2 100644 --- a/cranelift/src/compile.rs +++ b/cranelift/src/compile.rs @@ -34,13 +34,13 @@ impl binemit::RelocSink for PrintRelocs { addend: binemit::Addend, ) { if self.flag_print { - println!("reloc_ebb: {} {} {} at {}", r, name, addend, where_); + println!("reloc_external: {} {} {} at {}", r, name, addend, where_); } } fn reloc_jt(&mut self, where_: binemit::CodeOffset, r: binemit::Reloc, jt: ir::JumpTable) { if self.flag_print { - println!("reloc_ebb: {} {} at {}", r, jt, where_); + println!("reloc_jt: {} {} at {}", r, jt, where_); } } }