Fixes http://llvm.org/PR31129
Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 2227 Build 2227: arc lint + arc unit
Event Timeline
ELF/LinkerScript.cpp | ||
---|---|---|
1745 | You do not need else after return: if (consume(",")) { Expr E2 = readExpr(); expect(")"); return [=](uint64_t Dot) { return alignTo(E(Dot), E2(Dot)); }; } expect(")"); return [=](uint64_t Dot) { return alignTo(Dot, E(Dot)); }; |
You do not need else after return: