From 4e7664b11253f9740ef5638756273845e5ba10a3 Mon Sep 17 00:00:00 2001 From: Alexander Root Date: Mon, 21 Feb 2022 11:08:47 -0500 Subject: [PATCH] remove incorrect docs on widening_add --- src/IROperator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IROperator.h b/src/IROperator.h index 3ca7f393d7d6..b528f41297b6 100644 --- a/src/IROperator.h +++ b/src/IROperator.h @@ -342,7 +342,7 @@ Expr requirement_failed_error(Expr condition, const std::vector &args); Expr memoize_tag_helper(Expr result, const std::vector &cache_key_values); -/** Compute widen(a) + widen(b). The result is always signed. */ +/** Compute widen(a) + widen(b). */ Expr widening_add(Expr a, Expr b); /** Compute widen(a) * widen(b). a and b may have different signedness. */ Expr widening_mul(Expr a, Expr b);