From 4f1181fe061d3529f72e1237e7662bf9bc73c6e2 Mon Sep 17 00:00:00 2001 From: buzbee Date: Fri, 22 Jun 2012 13:52:12 -0700 Subject: Quick compiler: support for 006, 012, 013, 017 Continued fleshing out of the Quick compiler. With this CL, we're passing run-tests 006, 012, 013 and 017. Note minor changes to the tests to allow for easy identification of methods we want to run through the Quick path. Also, set up by default now to dump bitcode file to /sdcard/Bitcode/ Change-Id: I77ec73a87a21064273567802ddb44c4fdf71f9fd --- test/013-math2/src/Main.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/013-math2') diff --git a/test/013-math2/src/Main.java b/test/013-math2/src/Main.java index 819571dcce..2c80c31ad9 100644 --- a/test/013-math2/src/Main.java +++ b/test/013-math2/src/Main.java @@ -18,7 +18,7 @@ * test add by a 16-bit constant */ public class Main { - public static void main(String args[]) { + public static void math_013() { int a, b, res; a = 3; @@ -28,4 +28,7 @@ public class Main { a += 32000; System.out.println("a:" +a); } + public static void main(String args[]) { + math_013(); + } } -- cgit v1.2.3