diff options
| author | Graydon Hoare <[email protected]> | 2010-09-09 18:56:51 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-09-09 18:56:51 -0700 |
| commit | 79dc07d6487612ebf9ac62e43a5729ea774488b9 (patch) | |
| tree | e9dd8b7266621e98476f1a2c9023e4556a186e7d /src/boot/be/abi.ml | |
| parent | Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly wo... (diff) | |
| download | rust-79dc07d6487612ebf9ac62e43a5729ea774488b9.tar.xz rust-79dc07d6487612ebf9ac62e43a5729ea774488b9.zip | |
Use hashtable rather than bitset for vreg constraints in ra; speeds compilation.
Diffstat (limited to 'src/boot/be/abi.ml')
| -rw-r--r-- | src/boot/be/abi.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/be/abi.ml b/src/boot/be/abi.ml index 43043e11..2bb10870 100644 --- a/src/boot/be/abi.ml +++ b/src/boot/be/abi.ml @@ -118,7 +118,7 @@ type abi = abi_str_of_hardreg: (int -> string); abi_emit_target_specific: (Il.emitter -> Il.quad -> unit); - abi_constrain_vregs: (Il.quad -> Bits.t array -> unit); + abi_constrain_vregs: (Il.quad -> (Il.vreg,Bits.t) Hashtbl.t -> unit); abi_emit_fn_prologue: (Il.emitter -> Common.size (* framesz *) |