PR java/21519:
* jcf-write.c (generate_bytecode_insns) <SAVE_EXPR>: Don't call
NOTE_PUSH.
libjava:
PR java/21519:
* testsuite/libjava.compile/pr21519.java: New file.
* testsuite/libjava.compile/pr21519.no-link: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99739
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-05-15 Tom Tromey <tromey@redhat.com>
+
+ PR java/21519:
+ * jcf-write.c (generate_bytecode_insns) <SAVE_EXPR>: Don't call
+ NOTE_PUSH.
+
2005-05-12 Aaron Luchko <aluchko@redhat.com>
* gcj.texi: Add '-verify', '-noverify', and '-verifyremote'.
TREE_TYPE (return_address_type_node));
DECL_CONTEXT (decl) = current_function_decl;
DECL_IGNORED_P (decl) = 1;
+ DECL_ARTIFICIAL (decl) = 1;
return decl;
}
{
tree type = TREE_TYPE (exp);
emit_load (arg, state);
- NOTE_PUSH (TYPE_IS_WIDE (type) ? 2 : 1);
}
break;
case CONVERT_EXPR:
2005-05-15 Tom Tromey <tromey@redhat.com>
+ PR java/21519:
+ * testsuite/libjava.compile/pr21519.java: New file.
+ * testsuite/libjava.compile/pr21519.no-link: New file.
+
+2005-05-15 Tom Tromey <tromey@redhat.com>
+
* stacktrace.cc (getLineNumberForFrame): Use _Jv_GetSafeArg.
2005-05-13 Bryce McKinlay <mckinlay@redhat.com>
--- /dev/null
+public class pr21519 {
+ char[] source;
+ public int compute(int pos) {
+ for (int i = 0; i < pos; ++i)
+ if (!(source[i] == ' ' || source[i] == '\t')) return -1;
+ return pos;
+ }
+}