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);