diff options
| author | Graydon Hoare <[email protected]> | 2010-06-24 10:34:47 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-06-24 10:34:47 -0700 |
| commit | 25eb1fd3c9d997e460dff3e03d87e398e616c726 (patch) | |
| tree | fb8919376fe8a1f180f69bf4704bb71668881aab /src/boot/me/semant.ml | |
| parent | Merge timer loop functions, fix win32 build broken by logger change. (diff) | |
| download | rust-25eb1fd3c9d997e460dff3e03d87e398e616c726.tar.xz rust-25eb1fd3c9d997e460dff3e03d87e398e616c726.zip | |
Add fmt module, move out some common format helpers, add instruction-selection tracing and make selection use queues rather than list refs.
Diffstat (limited to 'src/boot/me/semant.ml')
| -rw-r--r-- | src/boot/me/semant.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/me/semant.ml b/src/boot/me/semant.ml index f7acccfb..d33eb6d9 100644 --- a/src/boot/me/semant.ml +++ b/src/boot/me/semant.ml @@ -65,7 +65,7 @@ type file_code = (node_id, item_code) Hashtbl.t;; type data_frags = (data, (fixup * Asm.frag)) Hashtbl.t;; let string_of_name (n:Ast.name) : string = - Ast.fmt_to_str Ast.fmt_name n + Fmt.fmt_to_str Ast.fmt_name n ;; (* The only need for a carg is to uniquely identify a constraint-arg |