From f91724911176306a1962361134dda2c36514e1d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Tue, 26 Jul 2022 18:05:16 +0200 Subject: [PATCH] Changelog: Remove the superfluous entry about error reporter --- Changelog.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 580dd1bf3..1e3a0b053 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,7 +9,6 @@ Compiler Features: * Yul Optimizer: Add rule to convert `mod(mul(X, Y), A)` into `mulmod(X, Y, A)`, if `A` is a power of two. * Yul Optimizer: Add rule to convert `mod(add(X, Y), A)` into `addmod(X, Y, A)`, if `A` is a power of two. * Code Generator: More efficient code for checked addition and subtraction. - * Error Reporter: More readable and informative error/warning messages. Bugfixes: * Commandline Interface: Disallow the following options outside of the compiler mode: ``--via-ir``,``--metadata-literal``, ``--metadata-hash``, ``--model-checker-show-unproved``, ``--model-checker-div-mod-no-slacks``, ``--model-checker-engine``, ``--model-checker-invariants``, ``--model-checker-solvers``, ``--model-checker-timeout``, ``--model-checker-contracts``, ``--model-checker-targets``.