Details
Details
- Reviewers
eli.friedman MatzeB efriedma
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Maybe it would be more straightforward to use CCValAssign::getExtraInfo()? Either way is fine, I guess.
llvm/lib/CodeGen/CallingConvLower.cpp | ||
---|---|---|
288 | Don't need braces on innermost if. |
Comment Actions
LGTM with one minor comment.
llvm/lib/CodeGen/CallingConvLower.cpp | ||
---|---|---|
281 | Don't need parentheses around each compare. |
Comment Actions
Committed as d782d1f898eaafee49548d5332e84c3ae11ebac4. (closing manually because I forgot to add the revision line to the commit msg)
Comment Actions
Relanded as 055ea585c77cd8ae9cd3bc327c1e4404020fdf27 with a typo fixed. This:
(Loc1.getExtraInfo() != Loc1.getExtraInfo()
Is now:
(Loc1.getExtraInfo() != Loc2.getExtraInfo())
Don't need parentheses around each compare.