diff options
author | Fangrui Song <maskray@google.com> | 2020-02-13 16:36:27 -0800 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2020-02-13 17:06:24 -0800 |
commit | 1d49eb00d97a8e920ae34ff433419d0cd61641fd (patch) | |
tree | 4ac37b7c47c1c8bfba32de990395861ffe8f3930 /clang/lib/CodeGen/CGCall.cpp | |
parent | 918e90559b08adebff26c342080c65e79cc223ec (diff) | |
download | llvm-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.cpp | 2 |
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. } |