This adds AVRISelLowering.cpp
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp | ||
---|---|---|
97–98 | Setting these to Expand should be unnecessary since you don't add i32/i64 as legal types (same for all of the other operations) | |
100 | Capitalize | |
844–846 | Don't repeat the documentation | |
849 | Comment doesn't make sense to me here | |
1134 | nullptr | |
1136–1140 | Why not just immediately cast to Function and then remove GV variable | |
1321–1326 | Formatting | |
1509 | static, no inline | |
1674 | !CallOperandVal | |
1782–1783 | You should be able to avoid a cast with getSubtarget<AVRSubtarget> |
Code review from Matt
- Don't both setting operations to expand on already illegal types
- Clean up some comments
- Use nullptr rather than 0
Setting these to Expand should be unnecessary since you don't add i32/i64 as legal types (same for all of the other operations)