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/CodeGenFunction.h | |
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/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 7ddd38c..1e3244d 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2827,7 +2827,7 @@ public: PeepholeProtection protectFromPeepholes(RValue rvalue); void unprotectFromPeepholes(PeepholeProtection protection); - void EmitAlignmentAssumptionCheck(llvm::Value *Ptr, QualType Ty, + void emitAlignmentAssumptionCheck(llvm::Value *Ptr, QualType Ty, SourceLocation Loc, SourceLocation AssumptionLoc, llvm::Value *Alignment, @@ -2835,13 +2835,14 @@ public: llvm::Value *TheCheck, llvm::Instruction *Assumption); - void EmitAlignmentAssumption(llvm::Value *PtrValue, QualType Ty, + void emitAlignmentAssumption(llvm::Value *PtrValue, QualType Ty, SourceLocation Loc, SourceLocation AssumptionLoc, llvm::Value *Alignment, llvm::Value *OffsetValue = nullptr); - void EmitAlignmentAssumption(llvm::Value *PtrValue, const Expr *E, - SourceLocation AssumptionLoc, llvm::Value *Alignment, + void emitAlignmentAssumption(llvm::Value *PtrValue, const Expr *E, + SourceLocation AssumptionLoc, + llvm::Value *Alignment, llvm::Value *OffsetValue = nullptr); //===--------------------------------------------------------------------===// |