diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-03-07 14:55:52 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-03-07 14:55:52 +0000 |
commit | 3770763cdae6f4b46d7555c18a8906a23a03ff38 (patch) | |
tree | f66a812a284b72d3a2f449930f92cd78e98590dc /lld/ELF/MapFile.cpp | |
parent | 67329896374fa52b3b73716c03c9267cd309b0e6 (diff) | |
download | bcm5719-llvm-3770763cdae6f4b46d7555c18a8906a23a03ff38.tar.gz bcm5719-llvm-3770763cdae6f4b46d7555c18a8906a23a03ff38.zip |
Rename Addralign to Alignment.
It now matches the name used in InputSectionBase.
llvm-svn: 297144
Diffstat (limited to 'lld/ELF/MapFile.cpp')
-rw-r--r-- | lld/ELF/MapFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/MapFile.cpp b/lld/ELF/MapFile.cpp index 07e1fa39115..97b913705ca 100644 --- a/lld/ELF/MapFile.cpp +++ b/lld/ELF/MapFile.cpp @@ -102,7 +102,7 @@ static void writeMapFile2(raw_fd_ostream &OS, << " Align Out In File Symbol\n"; for (OutputSection *Sec : OutputSections) { - writeOutSecLine(OS, Width, Sec->Addr, Sec->Size, Sec->Addralign, Sec->Name); + writeOutSecLine(OS, Width, Sec->Addr, Sec->Size, Sec->Alignment, Sec->Name); OS << '\n'; StringRef PrevName = ""; |