Fix SuperFileCheck from failing outerloop (#88692)
authorWill Smith <lol.tihan@gmail.com>
Wed, 12 Jul 2023 16:12:15 +0000 (09:12 -0700)
committerGitHub <noreply@github.com>
Wed, 12 Jul 2023 16:12:15 +0000 (09:12 -0700)
src/coreclr/tools/SuperFileCheck/Program.cs

index cb3732b..64203be 100644 (file)
@@ -392,7 +392,6 @@ namespace SuperFileCheck
 
             // 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 @@ namespace SuperFileCheck
                 tmpSrc.AppendLine(String.Empty);
             }
             tmpSrc.AppendLine(startAnchorText);
-            tmpSrc.AppendLine(startInstrsAnchorText);
             tmpSrc.AppendLine(TransformMethod(methodDecl, checkPrefixes));
             tmpSrc.AppendLine(endAnchorText);