From ad903c6db716b2bfbbc242afc0252443ad72ca46 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Thu, 21 Apr 2005 16:22:33 +0000 Subject: re PR java/21115 (false boolean argument passed from pre-compiled to interpreted method is true) 2005-04-21 Anthony Green PR libgcj/21115 * testsuite/libjava.special/special.exp, testsuite/libjava.special/pr21115I.java, testsuite/libjava.special/pr21115.java, testsuite/libjava.special/pr21115.out: New files. From-SVN: r98511 --- libjava/testsuite/libjava.special/pr21115I.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libjava/testsuite/libjava.special/pr21115I.java (limited to 'libjava/testsuite/libjava.special/pr21115I.java') diff --git a/libjava/testsuite/libjava.special/pr21115I.java b/libjava/testsuite/libjava.special/pr21115I.java new file mode 100644 index 0000000..17701ac --- /dev/null +++ b/libjava/testsuite/libjava.special/pr21115I.java @@ -0,0 +1,20 @@ +public class pr21115I extends pr21115 +{ + public boolean test(boolean a, boolean b, + boolean c, boolean d, + boolean e, boolean f, + boolean g, boolean h, + boolean i, boolean j) + { + return a && b && c && d && e && f && g && h && i; + } + + public boolean test(int a, int b, + int c, int d, + int e, int f, + int g, int h, + int i, int j) + { + return true; + } +} -- cgit v1.1