diff options
Diffstat (limited to 'test/Main/Main.java')
-rw-r--r-- | test/Main/Main.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Main/Main.java b/test/Main/Main.java index b4df99945f..3e94764b0b 100644 --- a/test/Main/Main.java +++ b/test/Main/Main.java @@ -16,5 +16,8 @@ class Main { public static void main(String args[]) { + // Empty loop to avoid the method to be pattern matched (it's used in 595-profile-saving and + // we expect the method to be baseline compiled there). + for (int i = 0; i < 100; i++) {} } } |