[PATCH] D134744: [clang][Interp] Implement rem opcode

Timm Bäder via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Sep 28 02:34:51 PDT 2022


tbaeder added inline comments.


================
Comment at: clang/lib/AST/Interp/Interp.h:173
+    APSInt RHSInt = RHS.toAPSInt();
+    APSInt Result = LHSInt % RHSInt;
+
----------------
`Result`is unused in here now I guess. Also `RHSInt`


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D134744/new/

https://reviews.llvm.org/D134744



More information about the cfe-commits mailing list