summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2019-06-20 20:56:20 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2019-06-20 20:56:20 +0000
commit8cca3a5a85e1a3186b6b539dafb6dc2e4c8ac04b (patch)
treee053a23bd394fcd014b3e3e00958937d5f8f0168 /clang/lib/CodeGen/CodeGenFunction.h
parent8ad1decf453e299dd7d011a218212dc6480ea6fd (diff)
downloadbcm5719-llvm-8cca3a5a85e1a3186b6b539dafb6dc2e4c8ac04b.tar.gz
bcm5719-llvm-8cca3a5a85e1a3186b6b539dafb6dc2e4c8ac04b.zip
Rename CodeGenFunction::overlapFor* to getOverlapFor*.
llvm-svn: 363980
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index efb68c56041..3516e842ddc 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -2314,7 +2314,7 @@ public:
}
/// Determine whether a return value slot may overlap some other object.
- AggValueSlot::Overlap_t overlapForReturnValue() {
+ AggValueSlot::Overlap_t getOverlapForReturnValue() {
// FIXME: Assuming no overlap here breaks guaranteed copy elision for base
// class subobjects. These cases may need to be revisited depending on the
// resolution of the relevant core issue.
@@ -2322,13 +2322,13 @@ public:
}
/// Determine whether a field initialization may overlap some other object.
- AggValueSlot::Overlap_t overlapForFieldInit(const FieldDecl *FD);
+ AggValueSlot::Overlap_t getOverlapForFieldInit(const FieldDecl *FD);
/// Determine whether a base class initialization may overlap some other
/// object.
- AggValueSlot::Overlap_t overlapForBaseInit(const CXXRecordDecl *RD,
- const CXXRecordDecl *BaseRD,
- bool IsVirtual);
+ AggValueSlot::Overlap_t getOverlapForBaseInit(const CXXRecordDecl *RD,
+ const CXXRecordDecl *BaseRD,
+ bool IsVirtual);
/// Emit an aggregate assignment.
void EmitAggregateAssign(LValue Dest, LValue Src, QualType EltTy) {
OpenPOWER on IntegriCloud