Remove an unnecessary debug trace (#5359)

This commit is contained in:
Trevor Elliott
2022-11-30 20:37:20 -08:00
committed by GitHub
parent c16f2956db
commit 37c3c5b1e0

View File

@@ -340,7 +340,6 @@ impl Inst {
value: u64,
mut alloc_tmp: F,
) -> SmallVec<[Inst; 4]> {
crate::trace!("loading a constant! {}", value);
if let Ok(imm) = i16::try_from(value as i64) {
// 16-bit signed immediate
smallvec![Inst::Mov64SImm16 { rd, imm }]