diff options
| author | Graydon Hoare <[email protected]> | 2011-01-12 15:13:37 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-12 15:13:37 -0800 |
| commit | 4ccdece184fbc0718efb15d411968b7688d53eb6 (patch) | |
| tree | 63519a76ff1f7a04395189bac6bdcafe4fe83500 | |
| parent | Guard a bunch more logging calls. Cut 10s off rustc compile time. (diff) | |
| download | rust-4ccdece184fbc0718efb15d411968b7688d53eb6.tar.xz rust-4ccdece184fbc0718efb15d411968b7688d53eb6.zip | |
Wrap long line.
| -rw-r--r-- | src/boot/me/resolve.ml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/boot/me/resolve.ml b/src/boot/me/resolve.ml index 02f862e3..68353fc9 100644 --- a/src/boot/me/resolve.ml +++ b/src/boot/me/resolve.ml @@ -642,8 +642,9 @@ let lval_base_resolving_visitor (fun _ -> log cx "looking up slot or item with ident '%s'" ident); match lookup cx (!scopes) (Ast.KEY_ident ident) with RES_failed _ -> err (Some id) "unresolved identifier '%s'" ident - | RES_ok (_, id) -> ((iflog cx (fun _ -> log cx "resolved to node id #%d" - (int_of_node id))); id) + | RES_ok (_, id) -> + ((iflog cx (fun _ -> log cx "resolved to node id #%d" + (int_of_node id))); id) in let lookup_slot_by_temp id temp = iflog cx (fun _ -> log cx "looking up temp slot #%d" (int_of_temp temp)); |