[PATCH] D37686: [DAG] Consolidating Instruction->SDNode Flags propagation in one class for better code management.

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 11 07:29:37 PDT 2017


RKSimon added inline comments.


================
Comment at: lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:112
+
+        if (const OverflowingBinaryOperator *OFBinOp =
+            dyn_cast<const OverflowingBinaryOperator>(Instr)) {
----------------
auto *OFBinOp


================
Comment at: lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:118
+
+        if (const PossiblyExactOperator *ExactOp =
+            dyn_cast<const PossiblyExactOperator>(Instr))
----------------
auto *ExactOp


https://reviews.llvm.org/D37686





More information about the llvm-commits mailing list