aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
diff options
context:
space:
mode:
authorFangrui Song <maskray@google.com>2020-02-13 16:36:27 -0800
committerFangrui Song <maskray@google.com>2020-02-13 17:06:24 -0800
commit1d49eb00d97a8e920ae34ff433419d0cd61641fd (patch)
tree4ac37b7c47c1c8bfba32de990395861ffe8f3930 /llvm/lib/CodeGen/AsmPrinter/WinException.cpp
parent918e90559b08adebff26c342080c65e79cc223ec (diff)
downloadllvm-1d49eb00d97a8e920ae34ff433419d0cd61641fd.zip
llvm-1d49eb00d97a8e920ae34ff433419d0cd61641fd.tar.gz
llvm-1d49eb00d97a8e920ae34ff433419d0cd61641fd.tar.bz2
[AsmPrinter] De-capitalize all AsmPrinter::Emit* but EmitInstruction
Similar to rL328848.
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/WinException.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/WinException.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/WinException.cpp b/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
index 0398675..e0ddafd 100644
--- a/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
@@ -203,7 +203,7 @@ void WinException::beginFunclet(const MachineBasicBlock &MBB,
// We want our funclet's entry point to be aligned such that no nops will be
// present after the label.
- Asm->EmitAlignment(std::max(Asm->MF->getAlignment(), MBB.getAlignment()),
+ Asm->emitAlignment(std::max(Asm->MF->getAlignment(), MBB.getAlignment()),
&F);
// Now that we've emitted the alignment directive, point at our funclet.