mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 04:24:21 +01:00
Merge pull request #160 from benclmnt/fix-real-explain-format
chore: fix REAL explain format
This commit is contained in:
@@ -1506,12 +1506,12 @@ fn insn_to_str(program: &Program, addr: InsnReference, insn: &Insn, indent: Stri
|
||||
),
|
||||
Insn::Real { value, dest } => (
|
||||
"Real",
|
||||
0,
|
||||
*dest as i32,
|
||||
*value as i32,
|
||||
0,
|
||||
OwnedValue::Text(Rc::new("".to_string())),
|
||||
OwnedValue::Float(*value),
|
||||
0,
|
||||
"".to_string(),
|
||||
format!("r[{}]={}", dest, value),
|
||||
),
|
||||
Insn::RealAffinity { register } => (
|
||||
"RealAffinity",
|
||||
|
||||
Reference in New Issue
Block a user