File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,14 +86,14 @@ Error BasicBlockSectionsProfileReader::ReadV1Profile() {
86
86
switch (Specifier) {
87
87
case ' @' :
88
88
break ;
89
- case ' m' :
89
+ case ' m' : // Module name speicifer.
90
90
if (Values.size () != 1 ) {
91
91
return createProfileParseError (Twine (" invalid module name value: '" ) +
92
92
S + " '" );
93
93
}
94
94
DIFilename = sys::path::remove_leading_dotslash (Values[0 ]);
95
95
continue ;
96
- case ' f' : {
96
+ case ' f' : { // Function names specifier.
97
97
bool FunctionFound = any_of (Values, [&](StringRef Alias) {
98
98
auto It = FunctionNameToDIFilename.find (Alias);
99
99
// No match if this function name is not found in this module.
@@ -129,7 +129,7 @@ Error BasicBlockSectionsProfileReader::ReadV1Profile() {
129
129
DIFilename = " " ;
130
130
continue ;
131
131
}
132
- case ' c' :
132
+ case ' c' : // Basic block cluster specifier.
133
133
// Skip the profile when we the profile iterator (FI) refers to the
134
134
// past-the-end element.
135
135
if (FI == ProgramBBClusterInfo.end ())
You can’t perform that action at this time.
0 commit comments