As per title.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
7781 ↗ | (On Diff #87064) | Extra whitespace change |
7870–7872 ↗ | (On Diff #87064) | Needs a legality check for the resulting adde? |
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
7874 ↗ | (On Diff #87092) | There is no wrapper for this ? |
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
7872 ↗ | (On Diff #87119) | clang-format |
lib/CodeGen/SelectionDAG/DAGCombiner.cpp | ||
---|---|---|
7876 ↗ | (On Diff #87232) | This should probably be (!LegalOperations || TLI.isOperationLegal(ISD::ADDE, VT)) - otherwise you might get into trouble if custom lowering results in the truncate being regenerated. |
7879 ↗ | (On Diff #87232) | Typically we don't use auto for these cases - just use SDvalue |