Previously we did not support them,
patch implements this functionality.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
ELF/LinkerScript.cpp | ||
---|---|---|
1799–1808 ↗ | (On Diff #77793) | We have very similar code in readGlobal. Can you factor it out? |
ELF/LinkerScript.cpp | ||
---|---|---|
1810 ↗ | (On Diff #77969) | I don't think you need Globals. You could just stop reading until local: in any context. |
ELF/LinkerScript.cpp | ||
---|---|---|
1810 ↗ | (On Diff #77969) | That what seems obvious and was what I first think of. ... Actually if you're ok with that, I am fine either, |
ELF/LinkerScript.cpp | ||
---|---|---|
1810 ↗ | (On Diff #77969) | Ah, I see my mistake now, above can't happen, please ignore my comment then. |
LGTM
ELF/SymbolTable.cpp | ||
---|---|---|
721 ↗ | (On Diff #78150) | Is there any reason to add single quotes? Please remove them because V.Name doesn't contain such quotes. |
ELF/SymbolTable.cpp | ||
---|---|---|
721 ↗ | (On Diff #78150) | Lets add them for V.Name ? That is consistent with other messages we added recently |
ELF/SymbolTable.cpp | ||
---|---|---|
721 ↗ | (On Diff #78150) | Well, what you pass here is a version name, and that's the right thing to do. If you want to add single quotes, do it in the string in error(). |