Also capitalized some induction variables, to match coding style.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
feedback
llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | ||
---|---|---|
565–566 | Nice catch! Indeed, 557 took care of it. |
llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | ||
---|---|---|
444 | Needs to be CB->getArgOperand. This is making my DEBUG build fail. |
llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | ||
---|---|---|
444 | Noted, doing a rebuild locally to validate there's no other failures and sending a fix asap. Sorry about this. |
llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | ||
---|---|---|
444 | (It might be a really good idea to do all local development with LLVM_ENABLE_ASSERTIONS enabled..) |
llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | ||
---|---|---|
444 | Just saw the discussions here. I fixed it in cca545ce462b61bdd4bd1b8d81d9eb921e13aebc For a CMAKE_BUILD_TYPE=Release build, -DLLVM_ENABLE_ASSERTIONS defaults to OFF. It may be good setting it to ON. |
llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | ||
---|---|---|
444 | +1 - good suggestion, you mean locally, I assume. |
Needs to be CB->getArgOperand. This is making my DEBUG build fail.