aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Selectionaux.ml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Selectionaux.ml')
-rw-r--r--backend/Selectionaux.ml5
1 files changed, 3 insertions, 2 deletions
diff --git a/backend/Selectionaux.ml b/backend/Selectionaux.ml
index 1b92f5fe..52ddd799 100644
--- a/backend/Selectionaux.ml
+++ b/backend/Selectionaux.ml
@@ -68,9 +68,10 @@ let rec cost_expr = function
let fast_cmove ty =
match Configuration.arch, Configuration.model with
- | "arm", _ -> true
+ | "arm", _ ->
+ (match ty with Tint | Tfloat | Tsingle -> true | _ -> false)
| "powerpc", "e5500" ->
- (match ty with Tint -> true | Tlong -> true | _ -> false)
+ (match ty with Tint | Tlong -> true | _ -> false)
| "powerpc", _ -> false
| "riscV", _ -> false
| "x86", _ ->