[Clang] Diagnose undefined behavior in a constant expression while evaluating...
[Clang] Diagnose undefined behavior in a constant expression while evaluating a compound assignment with remainder as operand Currently we don't diagnose overflow in a constant expression for the case of compound assignment with remainder as a operand. In handleIntIntBinOp the arguments LHS and Result can be the same source but in the check for remainder in this function we assigned to Result before checking for overflow. In all the other operations the check is done before Result is assigned to. Differential Revision: https://reviews.llvm.org/D140455
Loading
Please sign in to comment