From b038ba66a166fb264ca121632f447712e0973b5b Mon Sep 17 00:00:00 2001 From: Dave Allison Date: Thu, 14 Aug 2014 17:02:48 +0000 Subject: Revert "Revert "Reduce stack usage for overflow checks"" Fixes stack protection issue. Fixes mac build issue. This reverts commit 83b1940e6482b9d8feba5c492507735686650ea5. Change-Id: I7ba17252882b23a740bcda2ea94aacf398255406 --- test/004-InterfaceTest/src/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/004-InterfaceTest/src/Main.java') diff --git a/test/004-InterfaceTest/src/Main.java b/test/004-InterfaceTest/src/Main.java index 9ebac59445..297cbb04f1 100644 --- a/test/004-InterfaceTest/src/Main.java +++ b/test/004-InterfaceTest/src/Main.java @@ -23,7 +23,7 @@ public class Main { Integer intobj = new Integer(0); String s = "asdf"; long start = System.currentTimeMillis(); - for (int i = 0; i < 1000000; i++) { + for (int i = 0; i < 10000; i++) { map.put(intobj, s); } long end = System.currentTimeMillis(); @@ -34,7 +34,7 @@ public class Main { Integer intobj = new Integer(0); String s = "asdf"; long start = System.currentTimeMillis(); - for (int i = 0; i < 1000000; i++) { + for (int i = 0; i < 10000; i++) { map.put(intobj, s); } long end = System.currentTimeMillis(); -- cgit v1.2.3-59-g8ed1b