From 305376bcec774f821c443175f695c545ef3589f6 Mon Sep 17 00:00:00 2001 From: Karol Stasiak Date: Wed, 29 May 2019 14:21:00 +0200 Subject: [PATCH] Update documentation --- docs/lang/operators.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/lang/operators.md b/docs/lang/operators.md index bff1fc92..25f5a57d 100644 --- a/docs/lang/operators.md +++ b/docs/lang/operators.md @@ -160,9 +160,6 @@ Currently, `>`, `<`, `<=`, `>=` operators perform signed comparison if any of the types of their arguments is signed, and unsigned comparison otherwise. -**WARNING:** On targets using Intel 8080 and Sharp LR35902, a signed comparison `a OP b` is compiled as `a - b OP 0`, -which may give wrong results if the subtraction overflows. - ## Assignment and in-place modification operators **WARNING:** Unlike other languages, Millfork does not provide any guarantees about how many times the left hand side will be evaluated.