summaryrefslogtreecommitdiffstats
path: root/test/IntMath
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2011-09-19 11:11:44 -0700
committerIan Rogers <irogers@google.com>2011-09-19 13:06:22 -0700
commit9086572fa809d1a19d886b467e4da3ce42016982 (patch)
tree15e28b57d4500d7daff225f993affabbbd22cefb /test/IntMath
parent47d913865f35576b39a3b7f17720c344a6b99fa5 (diff)
downloadart-9086572fa809d1a19d886b467e4da3ce42016982.zip
art-9086572fa809d1a19d886b467e4da3ce42016982.tar.gz
art-9086572fa809d1a19d886b467e4da3ce42016982.tar.bz2
Fix for implicit null test for oat.
This change also cleans up the notion of the callee save method with a "IsPhony" call. Stack visitors check whether the frame they are on has a legitimate method with "HasMethod". Change-Id: I8ac0fdd595c1e764fdc22cfa9c6a394595f7e141
Diffstat (limited to 'test/IntMath')
-rw-r--r--test/IntMath/IntMath.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/IntMath/IntMath.java b/test/IntMath/IntMath.java
index f437f99..a38525e 100644
--- a/test/IntMath/IntMath.java
+++ b/test/IntMath/IntMath.java
@@ -961,7 +961,6 @@ class IntMath extends IntMathBase {
System.out.println("catchBlock(1000) FAILED: " + res);
failure = true;
}
-if (false) { // TODO: restore when fixed
res = catchBlock(7000);
if (res == 7777) {
System.out.println("catchBlock(7000) PASSED");
@@ -969,7 +968,6 @@ if (false) { // TODO: restore when fixed
System.out.println("catchBlock(7000) FAILED: " + res);
failure = true;
}
-}
res = catchBlockNoThrow(1000);
if (res == 1123) {
System.out.println("catchBlockNoThrow PASSED");