[commit: ghc] master: rts: detabify/dewhitespace Disassembler.c (f2864e9)

git at git.haskell.org git at git.haskell.org
Wed Aug 20 17:32:32 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/f2864e9621b7f35b6524545799da429a6b422143/ghc

>---------------------------------------------------------------

commit f2864e9621b7f35b6524545799da429a6b422143
Author: Austin Seipp <austin at well-typed.com>
Date:   Wed Aug 20 12:29:22 2014 -0500

    rts: detabify/dewhitespace Disassembler.c
    
    Signed-off-by: Austin Seipp <austin at well-typed.com>


>---------------------------------------------------------------

f2864e9621b7f35b6524545799da429a6b422143
 rts/Disassembler.c | 60 +++++++++++++++++++++++++++---------------------------
 1 file changed, 30 insertions(+), 30 deletions(-)

diff --git a/rts/Disassembler.c b/rts/Disassembler.c
index 36cd7b5..b84e43f 100644
--- a/rts/Disassembler.c
+++ b/rts/Disassembler.c
@@ -134,38 +134,38 @@ disInstr ( StgBCO *bco, int pc )
          debugBelch("\n");
          pc += 2; break;
       case bci_PUSH_APPLY_N:
-	  debugBelch("PUSH_APPLY_N\n");
-	  break;
+          debugBelch("PUSH_APPLY_N\n");
+          break;
       case bci_PUSH_APPLY_V:
-	  debugBelch("PUSH_APPLY_V\n");
-	  break;
+          debugBelch("PUSH_APPLY_V\n");
+          break;
       case bci_PUSH_APPLY_F:
-	  debugBelch("PUSH_APPLY_F\n");
-	  break;
+          debugBelch("PUSH_APPLY_F\n");
+          break;
       case bci_PUSH_APPLY_D:
-	  debugBelch("PUSH_APPLY_D\n");
-	  break;
+          debugBelch("PUSH_APPLY_D\n");
+          break;
       case bci_PUSH_APPLY_L:
-	  debugBelch("PUSH_APPLY_L\n");
-	  break;
+          debugBelch("PUSH_APPLY_L\n");
+          break;
       case bci_PUSH_APPLY_P:
-	  debugBelch("PUSH_APPLY_P\n");
-	  break;
+          debugBelch("PUSH_APPLY_P\n");
+          break;
       case bci_PUSH_APPLY_PP:
-	  debugBelch("PUSH_APPLY_PP\n");
-	  break;
+          debugBelch("PUSH_APPLY_PP\n");
+          break;
       case bci_PUSH_APPLY_PPP:
-	  debugBelch("PUSH_APPLY_PPP\n");
-	  break;
+          debugBelch("PUSH_APPLY_PPP\n");
+          break;
       case bci_PUSH_APPLY_PPPP:
-	  debugBelch("PUSH_APPLY_PPPP\n");
-	  break;
+          debugBelch("PUSH_APPLY_PPPP\n");
+          break;
       case bci_PUSH_APPLY_PPPPP:
-	  debugBelch("PUSH_APPLY_PPPPP\n");
-	  break;
+          debugBelch("PUSH_APPLY_PPPPP\n");
+          break;
       case bci_PUSH_APPLY_PPPPPP:
-	  debugBelch("PUSH_APPLY_PPPPPP\n");
-	  break;
+          debugBelch("PUSH_APPLY_PPPPPP\n");
+          break;
       case bci_SLIDE:
          debugBelch("SLIDE     %d down by %d\n", instrs[pc], instrs[pc+1] );
          pc += 2; break;
@@ -177,7 +177,7 @@ disInstr ( StgBCO *bco, int pc )
          pc += 1; break;
       case bci_ALLOC_PAP:
          debugBelch("ALLOC_PAP %d arity, %d words\n",
-		 instrs[pc], instrs[pc+1] );
+                 instrs[pc], instrs[pc+1] );
          pc += 2; break;
       case bci_MKAP:
          debugBelch("MKAP      %d words, %d stkoff\n", instrs[pc+1],
@@ -246,25 +246,25 @@ disInstr ( StgBCO *bco, int pc )
 
       case bci_RETURN:
          debugBelch("RETURN\n" );
-	 break;
+         break;
       case bci_RETURN_P:
          debugBelch("RETURN_P\n" );
-	 break;
+         break;
       case bci_RETURN_N:
          debugBelch("RETURN_N\n" );
-	 break;
+         break;
       case bci_RETURN_F:
          debugBelch("RETURN_F\n" );
-	 break;
+         break;
       case bci_RETURN_D:
          debugBelch("RETURN_D\n" );
-	 break;
+         break;
       case bci_RETURN_L:
          debugBelch("RETURN_L\n" );
-	 break;
+         break;
       case bci_RETURN_V:
          debugBelch("RETURN_V\n" );
-	 break;
+         break;
 
       default:
          barf("disInstr: unknown opcode %u", (unsigned int) instr);



More information about the ghc-commits mailing list