From 716687e12509a873e469e38250ffd57ba5d011f1 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Sat, 30 Jan 2021 15:53:04 +0100 Subject: fix OpWeights --- riscV/OpWeights.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscV/OpWeights.ml b/riscV/OpWeights.ml index 75a913c6..2b0496fc 100644 --- a/riscV/OpWeights.ml +++ b/riscV/OpWeights.ml @@ -104,7 +104,7 @@ module SweRV_EH1 = | Omul | Omulhs | Omulhu | Omull | Omullhs | Omullhu -> [| 1 ; 0 ; 1 |] | Odiv | Odivu | Odivl | Odivlu -> [| 0 ; 0; 0 |] - | _ -> [| 1; 0; 0; 0 |];; + | _ -> [| 1; 0; 0 |];; let non_pipelined_resources_of_op (op : operation) (nargs : int) = match op with -- cgit