File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ Error CodeGenDataReader::mergeFromObjectFile(
35
35
StableFunctionMapRecord &GlobalFunctionMapRecord,
36
36
stable_hash *CombinedHash) {
37
37
Triple TT = Obj->makeTriple ();
38
- auto CGOutLineName =
38
+ auto CGOutlineName =
39
39
getCodeGenDataSectionName (CG_outline, TT.getObjectFormat (), false );
40
40
auto CGMergeName =
41
41
getCodeGenDataSectionName (CG_merge, TT.getObjectFormat (), false );
42
42
43
43
auto processSectionContents = [&](const StringRef &Name,
44
44
const StringRef &Contents) {
45
- if (Name != CGOutLineName && Name != CGMergeName)
45
+ if (Name != CGOutlineName && Name != CGMergeName)
46
46
return ;
47
47
if (CombinedHash)
48
48
*CombinedHash = stable_hash_combine (*CombinedHash, xxh3_64bits (Contents));
@@ -52,7 +52,7 @@ Error CodeGenDataReader::mergeFromObjectFile(
52
52
// we want to merge them into a single cgdata.
53
53
// Although it's not a typical workflow, we support this scenario
54
54
// by looping over all data in the sections.
55
- if (Name == CGOutLineName ) {
55
+ if (Name == CGOutlineName ) {
56
56
while (Data != EndData) {
57
57
OutlinedHashTreeRecord LocalOutlineRecord;
58
58
LocalOutlineRecord.deserialize (Data);
You can’t perform that action at this time.
0 commit comments