]> Joshua Wise's Git repositories - snipe.git/blobdiff - codegen/stringifier.sml
blargCPU liveness
[snipe.git] / codegen / stringifier.sml
index 7ab1e896067557c65a0a10c6eee3b76955fe0a03..6124a55b9af249cc4881f57311180035000673a3 100644 (file)
@@ -6,20 +6,20 @@
 
 signature STRINGIFY =
 sig
-  type asm = x86.insn list
+  type asm = Blarg.insn list
   val stringify : (string -> string) -> asm -> string
 end
 
 structure Stringify :> STRINGIFY =
 struct
-  type asm = x86.insn list
-  structure X = x86
+  type asm = Blarg.insn list
+  structure X = Blarg
 
   (* val stringify : asm -> string
    * turns a x86 instruction list into a string of assembly code for these instructions *)
 
-  fun stringify' rn (X.CALL (l, n)) = X.print (X.CALL ((Symbol.symbol (rn (Symbol.name l))), n))
-    | stringify' rn x = X.print x
+  fun (*stringify' rn (X.CALL (l, n)) = X.print (X.CALL ((Symbol.symbol (rn (Symbol.name l))), n))
+    | *)stringify' rn x = X.print x
 
   (* val stringify : asm -> string *)
   fun stringify realname l = String.concat (List.map (stringify' realname) l)
This page took 0.023163 seconds and 4 git commands to generate.