Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor and correct the "is pure" and "can raise" (port upstream PR#10354 and PR#10387) #555

Merged
merged 9 commits into from
Apr 15, 2022
Prev Previous commit
Next Next commit
Update cfg
  • Loading branch information
gretay-js committed Apr 15, 2022
commit ed2a4f6ac54349544a279ab1cbc105ad07c918ea
2 changes: 1 addition & 1 deletion backend/cfg/cfg.ml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ let can_raise_operation : operation -> bool = function
| Intoffloat -> false
| Probe _ -> true
| Probe_is_enabled _ -> false (* CR xclerc for xclerc: double check *)
| Specific _ -> false (* CR xclerc for xclerc: double check *)
| Specific op -> Arch.operation_can_raise op
| Opaque -> false
| Name_for_debugger _ -> false
| Begin_region -> false
Expand Down