Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
59212b66
Commit
59212b66
authored
Feb 17, 2011
by
hjk
Browse files
debugger: better formatting of assembler lines
parent
00961969
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
59212b66
...
...
@@ -4100,6 +4100,12 @@ DisassemblerLines GdbEngine::parseCliDisassembler(const GdbMi &output)
}
line
.
replace
(
pos1
,
pos2
-
pos1
,
""
);
}
if
(
pos3
-
pos2
==
1
)
line
.
insert
(
pos2
+
1
,
"000"
);
if
(
pos3
-
pos2
==
2
)
line
.
insert
(
pos2
+
1
,
"00"
);
if
(
pos3
-
pos2
==
3
)
line
.
insert
(
pos2
+
1
,
"0"
);
dlines
.
appendLine
(
DisassemblerLine
(
_
(
line
)));
continue
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment