File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1172,7 +1172,7 @@ llvm::Value *CodeGenFunction::GetCountedByFieldExprGEP(
1172
1172
Indices.push_back (Builder.getInt32 (0 ));
1173
1173
return Builder.CreateInBoundsGEP (
1174
1174
ConvertType (QualType (RD->getTypeForDecl (), 0 )), Res,
1175
- RecIndicesTy (llvm::reverse (Indices)), " .. counted_by.gep" );
1175
+ RecIndicesTy (llvm::reverse (Indices)), " counted_by.gep" );
1176
1176
}
1177
1177
1178
1178
// / This method is typically called in contexts where we can't generate
@@ -1187,7 +1187,7 @@ llvm::Value *CodeGenFunction::EmitLoadOfCountedByField(
1187
1187
const Expr *Base, const FieldDecl *FAMDecl, const FieldDecl *CountDecl) {
1188
1188
if (llvm::Value *GEP = GetCountedByFieldExprGEP (Base, FAMDecl, CountDecl))
1189
1189
return Builder.CreateAlignedLoad (ConvertType (CountDecl->getType ()), GEP,
1190
- getIntAlign (), " .. counted_by.load" );
1190
+ getIntAlign (), " counted_by.load" );
1191
1191
return nullptr ;
1192
1192
}
1193
1193
You can’t perform that action at this time.
0 commit comments