We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e7e195 commit 49baf1dCopy full SHA for 49baf1d
src/tests/JIT/Regression/JitBlue/Runtime_115815/Runtime_115815.cs
@@ -11,12 +11,12 @@ public class Runtime_115815
11
[Fact]
12
public static void TestEntryPoint()
13
{
14
- var destination = new KeyValuePair<Container, double>[1_000_000];
+ var destination = new KeyValuePair<Container, double>[1_000];
15
16
// loop to make this method fully interruptible + to get into OSR version
17
- for (int i = 0; i < destination.Length; i++)
+ for (int i = 0; i < destination.Length * 1000; i++)
18
19
- destination[i] = default;
+ destination[i / 1000] = default;
20
}
21
22
for (int i = 0; i < 5; i++)
0 commit comments