diff options
| author | Or Brostovski <[email protected]> | 2010-08-07 16:43:08 +0300 |
|---|---|---|
| committer | Or Brostovski <[email protected]> | 2010-08-07 16:43:08 +0300 |
| commit | 4467d7683dae87d6d4c55e446910f7a5b85abd13 (patch) | |
| tree | e2578dbe8e2350eb4e82ae2941fc2efb7478253b /src/boot/be/il.ml | |
| parent | Added AST pretty printing for communication alt statement, closes issue 19. (diff) | |
| parent | Add Or to the AUTHORS file. (diff) | |
| download | rust-4467d7683dae87d6d4c55e446910f7a5b85abd13.tar.xz rust-4467d7683dae87d6d4c55e446910f7a5b85abd13.zip | |
Merge branch 'master' of git://github.com/graydon/rust
Conflicts:
src/boot/fe/ast.ml
Diffstat (limited to 'src/boot/be/il.ml')
| -rw-r--r-- | src/boot/be/il.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/be/il.ml b/src/boot/be/il.ml index 792e83e2..172d8661 100644 --- a/src/boot/be/il.ml +++ b/src/boot/be/il.ml @@ -695,7 +695,7 @@ type emitter = { mutable emit_pc: int; emit_target_specific: (emitter -> quad -> unit); mutable emit_quads: quads; emit_annotations: (int,string) Hashtbl.t; - emit_size_cache: ((size,operand) Hashtbl.t) Stack.t; + emit_size_cache: (size,operand) Hashtbl.t; emit_node: node_id option; } @@ -722,7 +722,7 @@ let new_emitter emit_target_specific = emit_target_specific; emit_quads = Array.create 4 badq; emit_annotations = Hashtbl.create 0; - emit_size_cache = Stack.create (); + emit_size_cache = Hashtbl.create 0; emit_node = node; } ;; |