From 9ca76d6a803969e040049cf6dc315bbfd30fb10b Mon Sep 17 00:00:00 2001 From: TIHan Date: Tue, 11 Jul 2023 11:54:43 -0700 Subject: [PATCH] Fix SuperFileCheck from failing outerloop --- src/coreclr/tools/SuperFileCheck/Program.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/coreclr/tools/SuperFileCheck/Program.cs b/src/coreclr/tools/SuperFileCheck/Program.cs index cb3732b06c8fe8..64203bedcf3e0e 100644 --- a/src/coreclr/tools/SuperFileCheck/Program.cs +++ b/src/coreclr/tools/SuperFileCheck/Program.cs @@ -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. @@ -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);