This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 257114
Collapse All | Expand All

(-)a/cnd.debugger.gdb2/src/org/netbeans/modules/cnd/debugger/gdb2/GdbDisassembly.java (-1 / +5 lines)
Lines 422-428 Link Here
422
                //do nothing
422
                //do nothing
423
            }
423
            }
424
            this.offset = tmpOffset;
424
            this.offset = tmpOffset;
425
            this.instruction = readValue(INSTR_HEADER, msg, pos);
425
            String inst = readValue(INSTR_HEADER, msg, pos);
426
            if (inst.contains("\\t")) { //NOI18N
427
                inst = inst.replace("\\t", "\t"); //NOI18N
428
            }
429
            this.instruction = inst;
426
        }
430
        }
427
431
428
        @Override
432
        @Override

Return to bug 257114