diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2019-10-28 11:14:48 -0700 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2019-10-28 12:50:46 -0700 |
commit | c7557dd692368d8ac3fc330d698b536e78560ac4 (patch) | |
tree | 4c6ec91601156e97cdae35dcf959c678097fa8c7 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 209d5a12c55fe674686b5dbff8ba59cad665a56a (diff) | |
download | bcm5719-llvm-c7557dd692368d8ac3fc330d698b536e78560ac4.tar.gz bcm5719-llvm-c7557dd692368d8ac3fc330d698b536e78560ac4.zip |
[Remarks] Remove references to ELF support
There is no ELF support at the moment.
Remove all the references to the `.remarks` section.
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index b784d2980cb..3c2395ef684 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1380,7 +1380,7 @@ void AsmPrinter::emitRemarksSection(RemarkStreamer &RS) { : RemarkSerializer.metaSerializer(OS); MetaSerializer->emit(); - // Switch to the right section: .remarks/__remarks. + // Switch to the remarks section. MCSection *RemarksSection = OutContext.getObjectFileInfo()->getRemarksSection(); OutStreamer->SwitchSection(RemarksSection); |