]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Remove extraneous tabs from Memcheck --trace-codegen output.
authorNicholas Nethercote <njn@valgrind.org>
Sat, 27 Sep 2003 19:54:04 +0000 (19:54 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Sat, 27 Sep 2003 19:54:04 +0000 (19:54 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1838

memcheck/mc_translate.c

index cba9e00214b61091712bdf35e0d9427c9cd55587..b2e3731fd6bf99cf7dfff1a86ef045e06b178ff3 100644 (file)
@@ -187,9 +187,7 @@ Char* SK_(name_XUOpcode)(Opcode opc)
 void SK_(pp_XUInstr)(UInstr* u)
 {
    switch (u->opcode) {
-
       case TAG1:
-         VG_(printf)("\t");
          VG_(pp_UOperand)(u, 1, 4, False);
          VG_(printf)(" = %s ( ", nameOfTagOp( u->val3 ));
          VG_(pp_UOperand)(u, 1, 4, False);
@@ -197,7 +195,6 @@ void SK_(pp_XUInstr)(UInstr* u)
          break;
 
       case TAG2:
-         VG_(printf)("\t");
          VG_(pp_UOperand)(u, 2, 4, False);
          VG_(printf)(" = %s ( ", nameOfTagOp( u->val3 ));
          VG_(pp_UOperand)(u, 1, 4, False);
@@ -207,26 +204,22 @@ void SK_(pp_XUInstr)(UInstr* u)
          break;
 
       case STOREV: case LOADV:
-         VG_(printf)("\t");
          VG_(pp_UOperand)(u, 1, u->size, u->opcode==LOADV);
          VG_(printf)(", ");
          VG_(pp_UOperand)(u, 2, u->size, u->opcode==STOREV);
          break;
 
       case PUTVF: case GETVF:
-         VG_(printf)("\t");
          VG_(pp_UOperand)(u, 1, 0, False);
          break;
 
       case GETV: case PUTV:
-         VG_(printf)("\t");
          VG_(pp_UOperand)(u, 1, u->opcode==PUTV ? 4 : u->size, False);
          VG_(printf)(", ");
          VG_(pp_UOperand)(u, 2, u->opcode==GETV ? 4 : u->size, False);
          break;
 
       case TESTV: case SETV:
-         VG_(printf)("\t");
          VG_(pp_UOperand)(u, 1, u->size, False);
          break;