Skip to content

Commit 806a772

Browse files
committed
Undo unnecessary changes
1 parent 40a3343 commit 806a772

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/tests/JIT/interpreter/Interpreter.cs

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ public static void RunInterpreterTests()
2828

2929
// For stackwalking validation
3030
System.GC.Collect();
31-
32-
// Console.WriteLine("Collect Garbage");
3331
}
3432

3533
public static int Mul4(int a, int b, int c, int d)
@@ -73,9 +71,8 @@ public static void TestSwitch()
7371
public static bool PowLoop(int n, long nr, int expected)
7472
{
7573
long ret = 1;
76-
for (int i = 0; i < n; i++) {
74+
for (int i = 0; i < n; i++)
7775
ret *= nr;
78-
}
7976
return (int)ret == expected;
8077
}
8178
}

0 commit comments

Comments
 (0)