Skip to content

Commit a760d90

Browse files
committed
minor update
1 parent 86f20b2 commit a760d90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sim/simx/execute.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void Emulator::execute(const Instr &instr, uint32_t wid, instr_trace_t *trace) {
103103
auto reg = instr.getRSrc(i);
104104
switch (type) {
105105
case RegType::Integer:
106-
DPH(2, "Src" << i << "-Reg: " << type << reg << "={");
106+
DPH(2, "Src" << i << " Reg: " << type << reg << "={");
107107
for (uint32_t t = 0; t < num_threads; ++t) {
108108
if (t) DPN(2, ", ");
109109
if (!warp.tmask.test(t)) {
@@ -116,7 +116,7 @@ void Emulator::execute(const Instr &instr, uint32_t wid, instr_trace_t *trace) {
116116
DPN(2, "}" << std::endl);
117117
break;
118118
case RegType::Float:
119-
DPH(2, "Src" << i << "-Reg: " << type << reg << "={");
119+
DPH(2, "Src" << i << " Reg: " << type << reg << "={");
120120
for (uint32_t t = 0; t < num_threads; ++t) {
121121
if (t) DPN(2, ", ");
122122
if (!warp.tmask.test(t)) {

0 commit comments

Comments
 (0)