From 82da44b625a1af03c0b768c71f1cef29831127c3 Mon Sep 17 00:00:00 2001 From: Shih-wei Liao Date: Thu, 1 Sep 2011 00:38:04 -0700 Subject: Fix the "mov R1, R2; mov R2, R3" bug in jni_compiler. Should be "mov R2, R3; mov R1, R2" instead. Change-Id: Ie5264c3fe38486781e09f54e1e6d1fdcf7a2d4e5 --- test/MyClassNatives/MyClassNatives.java | 1 + 1 file changed, 1 insertion(+) (limited to 'test/MyClassNatives') diff --git a/test/MyClassNatives/MyClassNatives.java b/test/MyClassNatives/MyClassNatives.java index f462363b90..0716bfa63a 100644 --- a/test/MyClassNatives/MyClassNatives.java +++ b/test/MyClassNatives/MyClassNatives.java @@ -8,5 +8,6 @@ class MyClass { native double fooDD(double x, double y); native Object fooIOO(int x, Object y, Object z); static native Object fooSIOO(int x, Object y, Object z); + static native int fooSII(int x, int y); static synchronized native Object fooSSIOO(int x, Object y, Object z); } -- cgit v1.2.3