Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/Transforms/InstCombine/InstCombineCalls.cpp | ||
---|---|---|
4263 ↗ | (On Diff #184441) | Wasn't sure what to do here. isMustTailCall is inlined in CallSite, but it can't be inlined in CallBase. |
Comment Actions
Minor nits. I've been using Call instead of CB because when there is a nice word instead of initialism, I prefer it for readability. But that's up to you really.
lib/Transforms/InstCombine/InstCombineCalls.cpp | ||
---|---|---|
3984 ↗ | (On Diff #184441) | A const CallSite isn't actually the same as a const CallBase & -- that would be an ImmutableCallSite. Still, if the const works here, great. |
4263 ↗ | (On Diff #184441) | You can just define it out-of-line. I don't think these *need* to be inlined, and in Instructions.cpp we have all the types available. |
4530 ↗ | (On Diff #184441) | Can use clang-format here. Also good candidate for auto *NestF. |