projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0ab5c8
)
X86: Change indentation on microop disassembly.
author
Gabe Black
<gblack@eecs.umich.edu>
Wed, 7 Jan 2009 06:40:41 +0000
(22:40 -0800)
committer
Gabe Black
<gblack@eecs.umich.edu>
Wed, 7 Jan 2009 06:40:41 +0000
(22:40 -0800)
src/arch/x86/insts/static_inst.cc
patch
|
blob
|
history
diff --git
a/src/arch/x86/insts/static_inst.cc
b/src/arch/x86/insts/static_inst.cc
index 0c1508d5ab20d1e995f63d49debf1e232102e657..15fc4bee635d4d19922bd44ad38e48aeeedec375 100644
(file)
--- a/
src/arch/x86/insts/static_inst.cc
+++ b/
src/arch/x86/insts/static_inst.cc
@@
-63,13
+63,13
@@
namespace X86ISA
void X86StaticInst::printMnemonic(std::ostream &os,
const char * mnemonic) const
{
- ccprintf(os, "
\t
%s ", mnemonic);
+ ccprintf(os, "
%s ", mnemonic);
}
void X86StaticInst::printMnemonic(std::ostream &os,
const char * instMnemonic, const char * mnemonic) const
{
- ccprintf(os, "
\t
%s : %s ", instMnemonic, mnemonic);
+ ccprintf(os, "
%s : %s ", instMnemonic, mnemonic);
}
void X86StaticInst::printSegment(std::ostream &os, int segment) const