diff options
| author | Graydon Hoare <[email protected]> | 2010-09-14 15:34:01 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-09-14 15:34:01 -0700 |
| commit | b504b3f8d5a3374d079e70c3d6c6d01612e49ecf (patch) | |
| tree | 4627a955101e85fe1837bd4e637d7e4a87b342ab /src/boot/me/semant.ml | |
| parent | Translate const uses via runtime expression evaluation. (diff) | |
| download | rust-b504b3f8d5a3374d079e70c3d6c6d01612e49ecf.tar.xz rust-b504b3f8d5a3374d079e70c3d6c6d01612e49ecf.zip | |
Begin actually folding constant items into operands at site of use.
Diffstat (limited to 'src/boot/me/semant.ml')
| -rw-r--r-- | src/boot/me/semant.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/boot/me/semant.ml b/src/boot/me/semant.ml index 463acadb..feb5667f 100644 --- a/src/boot/me/semant.ml +++ b/src/boot/me/semant.ml @@ -50,6 +50,7 @@ type data = | DATA_frame_glue_fns of node_id | DATA_obj_vtbl of node_id | DATA_forwarding_vtbl of (Ast.ty_obj * Ast.ty_obj) + | DATA_const of node_id | DATA_crate ;; |