From 82bf906968d9bc1ca5b3131c7a7af8f30d5ac2f5 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Wed, 12 Jul 2023 09:12:15 -0700 Subject: [PATCH] Fix SuperFileCheck from failing outerloop (#88692) --- 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 cb3732b..64203be 100644 --- a/src/coreclr/tools/SuperFileCheck/Program.cs +++ b/src/coreclr/tools/SuperFileCheck/Program.cs @@ -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); -- 2.7.4