We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3603f commit decb9b2Copy full SHA for decb9b2
src/debuginfo/mod.rs
@@ -383,7 +383,7 @@ fn translate_loc(
383
stack_slots: &StackSlots,
384
) -> Option<Expression> {
385
match loc {
386
- LabelValueLoc::ValueLoc( ValueLoc::Reg(reg)) => {
+ LabelValueLoc::ValueLoc(ValueLoc::Reg(reg)) => {
387
let machine_reg = isa.map_dwarf_register(reg).unwrap();
388
let mut expr = Expression::new();
389
expr.op_reg(gimli::Register(machine_reg));
@@ -407,8 +407,8 @@ fn translate_loc(
407
}
408
LabelValueLoc::SPOffset(offset) => {
409
410
- expr.op_breg(X86_64::RSP, offset);
411
- Some(expr)
+ expr.op_breg(X86_64::RSP, offset);
+ Some(expr)
412
413
414
0 commit comments