diff options
author | David Blaikie <dblaikie@gmail.com> | 2017-03-16 00:43:19 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2017-03-16 00:43:19 +0000 |
commit | 618d3429f24011c85faa329df8e60ee1168b8edc (patch) | |
tree | 6b8d774d3ddb7692a37f5468b94af5326a06333a /llvm/lib/MC/MCMachOStreamer.cpp | |
parent | ddebad956e55f3f335f7f1e338edd277ab5404d7 (diff) | |
download | bcm5719-llvm-618d3429f24011c85faa329df8e60ee1168b8edc.tar.gz bcm5719-llvm-618d3429f24011c85faa329df8e60ee1168b8edc.zip |
Simplify/make more explicit (by making less explicit in some ways) some function calls
llvm-svn: 297921
Diffstat (limited to 'llvm/lib/MC/MCMachOStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCMachOStreamer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCMachOStreamer.cpp b/llvm/lib/MC/MCMachOStreamer.cpp index 2001e3e3aea..1e9ef416325 100644 --- a/llvm/lib/MC/MCMachOStreamer.cpp +++ b/llvm/lib/MC/MCMachOStreamer.cpp @@ -142,7 +142,7 @@ static bool canGoAfterDWARF(const MCSectionMachO &MSec) { void MCMachOStreamer::ChangeSection(MCSection *Section, const MCExpr *Subsection) { // Change the section normally. - bool Created = MCObjectStreamer::changeSectionImpl(Section, Subsection); + bool Created = changeSectionImpl(Section, Subsection); const MCSectionMachO &MSec = *cast<MCSectionMachO>(Section); StringRef SegName = MSec.getSegmentName(); if (SegName == "__DWARF") |