summaryrefslogtreecommitdiff
path: root/backend/Coloring.v
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Coloring.v')
-rw-r--r--backend/Coloring.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/Coloring.v b/backend/Coloring.v
index 28626cb..6d34e2c 100644
--- a/backend/Coloring.v
+++ b/backend/Coloring.v
@@ -282,7 +282,7 @@ Definition alloc_of_coloring (coloring: reg -> loc) (env: regenv) (rs: Regset.t)
fun r =>
if Regset.mem r rs
then coloring r
- else match env r with Tint => R R3 | Tfloat => R F1 end.
+ else match env r with Tint => R dummy_int_reg | Tfloat => R dummy_float_reg end.
(** * Coloring of the interference graph *)