Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
include/llvm/CodeGen/TargetLowering.h | ||
---|---|---|
3547 ↗ | (On Diff #213544) | LLVM standard style is that all type names are capitalized. |
3549 ↗ | (On Diff #213544) | Does it really make sense to have these two big structs here, when makeLibCall itself only uses a few bits from them? |
lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | ||
2478 ↗ | (On Diff #213544) | The "irrelevant" is supposed to be attached to whether the result is signed; an integer that's too large to fit in a register probably isn't going to get extended on any target. It isn't really a useful comment, though; I'd just get rid of it. |
include/llvm/CodeGen/TargetLowering.h | ||
---|---|---|
3547 ↗ | (On Diff #213544) | Ok, Thanks for your kind reminder. |
3549 ↗ | (On Diff #213544) | You're right. It seems we only need to define the bits will be used for makeLibCall. I'll update the structure, thanks. |
lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | ||
2478 ↗ | (On Diff #213544) | I'll remove the comment, thanks. |