[MLton-commit] r4773

Matthew Fluet fluet at mlton.org
Wed Oct 25 07:32:03 PDT 2006


Fixed unbound identifier bug introduced in r4733
----------------------------------------------------------------------

U   mlton/trunk/mlton/codegen/x86-codegen/x86-translate.fun

----------------------------------------------------------------------

Modified: mlton/trunk/mlton/codegen/x86-codegen/x86-translate.fun
===================================================================
--- mlton/trunk/mlton/codegen/x86-codegen/x86-translate.fun	2006-10-25 09:21:50 UTC (rev 4772)
+++ mlton/trunk/mlton/codegen/x86-codegen/x86-translate.fun	2006-10-25 14:32:01 UTC (rev 4773)
@@ -809,7 +809,7 @@
             val data =
                if List.isEmpty data
                   then []
-                  else (Assembly.pseudoop_data())::data
+                  else (x86.Assembly.pseudoop_data())::data
           in
             x86.Chunk.T {data = data, blocks = x86Blocks}
           end




More information about the MLton-commit mailing list