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
diff --git a/test/017-float/src/Main.java b/test/017-float/src/Main.java
index a5dbe1e..83fa2ee 100644
--- a/test/017-float/src/Main.java
+++ b/test/017-float/src/Main.java
@@ -18,7 +18,7 @@
* I dont know what this test does.
*/
public class Main {
- public static void main(String args[]) {
+ public static void float_017() {
float f = 3.1415926535f;
double d = 3.1415926535;
//float fd = (float) d;
@@ -30,4 +30,7 @@
//System.out.println("object values: off="
// + off.floatValue() + " ofd=" + ofd.floatValue());
}
+ public static void main(String args[]) {
+ float_017();
+ }
}