diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-06-20 20:56:20 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2019-06-20 20:56:20 +0000 |
commit | 8cca3a5a85e1a3186b6b539dafb6dc2e4c8ac04b (patch) | |
tree | e053a23bd394fcd014b3e3e00958937d5f8f0168 /clang/lib/CodeGen/CGClass.cpp | |
parent | 8ad1decf453e299dd7d011a218212dc6480ea6fd (diff) | |
download | bcm5719-llvm-8cca3a5a85e1a3186b6b539dafb6dc2e4c8ac04b.tar.gz bcm5719-llvm-8cca3a5a85e1a3186b6b539dafb6dc2e4c8ac04b.zip |
Rename CodeGenFunction::overlapFor* to getOverlapFor*.
llvm-svn: 363980
Diffstat (limited to 'clang/lib/CodeGen/CGClass.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGClass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp index 9e1312b786d..9a9dd88810e 100644 --- a/clang/lib/CodeGen/CGClass.cpp +++ b/clang/lib/CodeGen/CGClass.cpp @@ -556,7 +556,7 @@ static void EmitBaseInitializer(CodeGenFunction &CGF, AggValueSlot::IsDestructed, AggValueSlot::DoesNotNeedGCBarriers, AggValueSlot::IsNotAliased, - CGF.overlapForBaseInit(ClassDecl, BaseClassDecl, isBaseVirtual)); + CGF.getOverlapForBaseInit(ClassDecl, BaseClassDecl, isBaseVirtual)); CGF.EmitAggExpr(BaseInit->getInit(), AggSlot); @@ -645,7 +645,7 @@ static void EmitMemberInitializer(CodeGenFunction &CGF, LValue Src = CGF.EmitLValueForFieldInitialization(ThisRHSLV, Field); // Copy the aggregate. - CGF.EmitAggregateCopy(LHS, Src, FieldType, CGF.overlapForFieldInit(Field), + CGF.EmitAggregateCopy(LHS, Src, FieldType, CGF.getOverlapForFieldInit(Field), LHS.isVolatileQualified()); // Ensure that we destroy the objects if an exception is thrown later in // the constructor. @@ -681,7 +681,7 @@ void CodeGenFunction::EmitInitializerForField(FieldDecl *Field, LValue LHS, AggValueSlot::IsDestructed, AggValueSlot::DoesNotNeedGCBarriers, AggValueSlot::IsNotAliased, - overlapForFieldInit(Field), + getOverlapForFieldInit(Field), AggValueSlot::IsNotZeroed, // Checks are made by the code that calls constructor. AggValueSlot::IsSanitizerChecked); |