mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 14:49:18 +02:00
* fix compilation after last commit
This commit is contained in:
parent
1b8fc23dfd
commit
3795cadbc8
@ -96,7 +96,11 @@ unit nx86add;
|
|||||||
overflowcheck: boolean;
|
overflowcheck: boolean;
|
||||||
comparison: boolean;
|
comparison: boolean;
|
||||||
begin
|
begin
|
||||||
overflowcheck:=needoverflowcheck;
|
overflowcheck:=(cs_check_overflow in current_settings.localswitches) and
|
||||||
|
(left.resultdef.typ<>pointerdef) and
|
||||||
|
(right.resultdef.typ<>pointerdef) and
|
||||||
|
not(nf_internal in flags);
|
||||||
|
|
||||||
comparison:=
|
comparison:=
|
||||||
(op=A_CMP) or (op=A_TEST) or (op=A_BT) or is_boolean(resultdef);
|
(op=A_CMP) or (op=A_TEST) or (op=A_BT) or is_boolean(resultdef);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user