prolog: Fix NoBlock and NoOp functions.
Probably been broken since the prolog cafe introduction. The status was never updated, resulting in broken rules. Change-Id: I06a21f1d669dcc0eaa3bcd772082ed4387fe572a
This commit is contained in:
@@ -198,8 +198,8 @@ default_submit([Type | Types], Tmp, Out) :-
|
||||
%%
|
||||
legacy_submit_rule('MaxWithBlock', Label, Id, Min, Max, T) :- !, max_with_block(Label, Min, Max, T).
|
||||
legacy_submit_rule('MaxNoBlock', Label, Id, Min, Max, T) :- !, max_no_block(Label, Max, T).
|
||||
legacy_submit_rule('NoBlock', Label, Id, Min, Max, T) :- true.
|
||||
legacy_submit_rule('NoOp', Label, Id, Min, Max, T) :- true.
|
||||
legacy_submit_rule('NoBlock', Label, Id, Min, Max, T) :- T = ok, true.
|
||||
legacy_submit_rule('NoOp', Label, Id, Min, Max, T) :- T = ok, true.
|
||||
legacy_submit_rule(Fun, Label, Id, Min, Max, T) :- T = impossible(unsupported(Fun)).
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user