From 2064191a299aa0005594b9434885e5b4d56abcc6 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Tue, 14 Sep 2021 13:30:26 +0200 Subject: - make non trapping loads in scheduling dependent on option (which was ignored on BTL) - set this option to false, since Kalray still ships a buggy runtime system --- scheduling/BTLScheduleraux.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scheduling') diff --git a/scheduling/BTLScheduleraux.ml b/scheduling/BTLScheduleraux.ml index 75672243..0e682c4c 100644 --- a/scheduling/BTLScheduleraux.ml +++ b/scheduling/BTLScheduleraux.ml @@ -272,7 +272,7 @@ let schedule_blk n ibf btl = | None -> btl let turn_all_loads_nontrap n ibf btl = - if not !config.has_non_trapping_loads then btl + if not !config.has_non_trapping_loads || not !Clflags.option_fnontrap_loads then btl else let rec traverse_rec ib = match ib with -- cgit