aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCStreamer.cpp
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2022-03-11 20:07:00 -0800
committerFangrui Song <i@maskray.me>2022-03-11 20:07:00 -0800
commit689c3a2552b90bcc93558581eebbef9c540a0994 (patch)
tree2e317b651ff53d1c41bbf866c2c9415de0dc4576 /llvm/lib/MC/MCStreamer.cpp
parentf44f60a297c69c603b3d473ca0cf0f8c06b93d32 (diff)
downloadllvm-689c3a2552b90bcc93558581eebbef9c540a0994.zip
llvm-689c3a2552b90bcc93558581eebbef9c540a0994.tar.gz
llvm-689c3a2552b90bcc93558581eebbef9c540a0994.tar.bz2
[MC] Fix letter case of some MCSection member functions
Diffstat (limited to 'llvm/lib/MC/MCStreamer.cpp')
-rw-r--r--llvm/lib/MC/MCStreamer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCStreamer.cpp b/llvm/lib/MC/MCStreamer.cpp
index a42b4da8..700f273 100644
--- a/llvm/lib/MC/MCStreamer.cpp
+++ b/llvm/lib/MC/MCStreamer.cpp
@@ -60,7 +60,7 @@ void MCTargetStreamer::changeSection(const MCSection *CurSection,
MCSection *Section,
const MCExpr *Subsection,
raw_ostream &OS) {
- Section->PrintSwitchToSection(*Streamer.getContext().getAsmInfo(),
+ Section->printSwitchToSection(*Streamer.getContext().getAsmInfo(),
Streamer.getContext().getTargetTriple(), OS,
Subsection);
}