Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SuperFileCheck from failing outerloop #88692

Merged
merged 1 commit into from
Jul 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/coreclr/tools/SuperFileCheck/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,6 @@ static string PreProcessMethod(MethodDeclarationInfo methodDeclInfo, string[] ch

// Create anchors from the first prefix.
var startAnchorText = $"// {checkPrefixes[0]}-LABEL: for method {methodName}";
var startInstrsAnchorText = $"// {checkPrefixes[0]}: Lcl frame size =";
var endAnchorText = $"// {checkPrefixes[0]}: for method {methodName}";

// Create temp source file based on the source text of the method.
Expand All @@ -406,7 +405,6 @@ static string PreProcessMethod(MethodDeclarationInfo methodDeclInfo, string[] ch
tmpSrc.AppendLine(String.Empty);
}
tmpSrc.AppendLine(startAnchorText);
tmpSrc.AppendLine(startInstrsAnchorText);
tmpSrc.AppendLine(TransformMethod(methodDecl, checkPrefixes));
tmpSrc.AppendLine(endAnchorText);

Expand Down