aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGCall.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 /clang/lib/CodeGen/CGCall.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 'clang/lib/CodeGen/CGCall.cpp')
-rw-r--r--clang/lib/CodeGen/CGCall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp
index 432058b..6cc0154 100644
--- a/clang/lib/CodeGen/CGCall.cpp
+++ b/clang/lib/CodeGen/CGCall.cpp
@@ -3906,7 +3906,7 @@ public:
void EmitAsAnAssumption(SourceLocation Loc, QualType RetTy, RValue &Ret) {
if (!AA)
return;
- CGF.EmitAlignmentAssumption(Ret.getScalarVal(), RetTy, Loc,
+ CGF.emitAlignmentAssumption(Ret.getScalarVal(), RetTy, Loc,
AA->getLocation(), Alignment, OffsetCI);
AA = nullptr; // We're done. Disallow doing anything else.
}