Age | Commit message (Expand) | Author | Files | Lines |
2001-01-10 | [multiple changes] | Alexandre Petit-Bianco | 1 | -3/+2 |
2000-12-16 | jcf-parse.c (jcf_parse_source): Set wfl_operator if not already set. | Tom Tromey | 1 | -1/+4 |
2000-11-24 | jcf-parse.c (init_jcf_parse): Register current_file_list root. | Anthony Green | 1 | -1/+5 |
2000-11-22 | jcf-parse.c (get_constant): Call UT8_CHAR_LENGTH on `utf8', not the scratch b... | Bryce McKinlay | 1 | -1/+1 |
2000-11-17 | stringpool.c: New file. | Zack Weinberg | 1 | -23/+29 |
2000-11-11 | jcf-parse.c (process_zip_dir): Add finput parameter. | Anthony Green | 1 | -3/+5 |
2000-11-10 | alpha.c (check_float_value): Use memcpy, not bcopy. | Kaveh R. Ghazi | 1 | -2/+1 |
2000-11-07 | alias.c [...] (init_alias_analysis, [...]): Use memset () instead of bzero (). | Joseph Myers | 1 | -1/+1 |
2000-10-18 | gjavah.c (add_class_decl): Removed unused variables `tname', `tlen' and `name... | Alexandre Petit-Bianco | 1 | -3/+5 |
2000-10-13 | Remove obstacks. | Mark Mitchell | 1 | -15/+2 |
2000-10-07 | [multiple changes] | Alexandre Petit-Bianco | 1 | -0/+2 |
2000-10-01 | c-decl.c (c_expand_body): Don't generate RTL if flag_syntax_only. | Mark Mitchell | 1 | -1/+1 |
2000-09-23 | Make-lang.in (JAVA_SRCS): Include java-tree.h. | Mark Mitchell | 1 | -10/+11 |
2000-09-13 | jcf-parse.c: Include <locale.h>. | Tom Tromey | 1 | -0/+4 |
2000-09-12 | re GNATS gcj/33 (gcj mangles composed characters) | Tom Tromey | 1 | -5/+26 |
2000-08-29 | top level: | Zack Weinberg | 1 | -1/+1 |
2000-08-29 | javaop.h (WORD_TO_INT): Mask lower 32 bits of a jword before sign extending. | Andrew Haley | 1 | -2/+2 |
2000-08-11 | class.c (maybe_layout_super_class): Fixed indentation. | Alexandre Petit-Bianco | 1 | -3/+3 |
2000-07-27 | [multiple changes] | Alexandre Petit-Bianco | 1 | -5/+4 |
2000-06-21 | [multiple changes] | Alexandre Petit-Bianco | 1 | -1/+1 |
2000-06-01 | re GNATS gcj/207 (Compiler failure) | Alexandre Petit-Bianco | 1 | -0/+2 |
2000-05-09 | top level: | Zack Weinberg | 1 | -3/+3 |
2000-05-02 | class.c (add_method_1): Set both DECL_EXTERNAL and METHOD_NATIVE on native fu... | Tom Tromey | 1 | -1/+14 |
2000-03-28 | [multiple changes] | Alexandre Petit-Bianco | 1 | -1/+1 |
2000-03-13 | Added Java 1.1 language features. | Alexandre Petit-Bianco | 1 | -17/+41 |
2000-02-26 | expr.c (build_class_init): Mark the decl to be ignored by check_init. | Anthony Green | 1 | -0/+8 |
2000-02-21 | [multiple changes] | Alexandre Petit-Bianco | 1 | -12/+1 |
2000-01-21 | buffer.h: PROTO -> PARAMS. | Kaveh R. Ghazi | 1 | -11/+11 |
2000-01-06 | Makefile.in (LIBDEPS): Added gcc's errors.o | Alexandre Petit-Bianco | 1 | -18/+0 |
1999-12-31 | class.c (assume_compiled, [...]): Add static prototype. | Kaveh R. Ghazi | 1 | -2/+1 |
1999-12-30 | class.c (class_depth): Return -1 if the class doesn't load properly. | Alexandre Petit-Bianco | 1 | -0/+2 |
1999-12-06 | jcf-parse.c (saw_java_source): Global variable removed. | Alexandre Petit-Bianco | 1 | -27/+15 |
1999-11-21 | constants.c (find_methodref_index): Unwrap method names before inserting them... | Anthony Green | 1 | -1/+2 |
1999-10-19 | jcf-parse.c (parse_source_file): Call jcf_dependency_add_file. | Tom Tromey | 1 | -0/+2 |
1999-09-16 | gjavah.c (get_field_name, [...]): Use xmalloc, not malloc. | Kaveh R. Ghazi | 1 | -2/+2 |
1999-09-02 | class.c (finish_class): Remove unused parameter, all callers changed. | Kaveh R. Ghazi | 1 | -1/+1 |
1999-08-10 | check-init.c (check_bool2_init, [...]): Add static prototypes. | Kaveh R. Ghazi | 1 | -8/+10 |
1999-04-21 | decl.c (predef_filenames, [...]): New globals | Alexandre Petit-Bianco | 1 | -3/+49 |
1999-04-05 | Makefile.in (gjavah.o): Depend on $(JAVA_TREE_H). | Kaveh R. Ghazi | 1 | -0/+3 |
1999-04-05 | class.c (add_method_1): Cast the argument of `bzero' to PTR. | Kaveh R. Ghazi | 1 | -1/+1 |
1999-03-21 | Makefile.in (jcf-dump.o): Depend on $(CONFIG_H) $(srcdir)/../system.h and $(J... | Kaveh R. Ghazi | 1 | -6/+7 |
1999-03-06 | Makefile.in (jcf-parse.o): Depend on $(PARSE_H). | Kaveh R. Ghazi | 1 | -10/+11 |
1999-02-18 | jcf-parse.c (get_constant): Add braces around computation of 'd' when REAL_AR... | Andrew Haley | 1 | -4/+6 |
1999-02-16 | [multiple changes] | Alexandre Petit-Bianco | 1 | -0/+2 |
1999-02-02 | Optimize: `return (a ? b : c)' as: `if (a) return b; else return c;'. | Per Bothner | 1 | -1/+1 |
1999-01-23 | Warning fixes: | Kaveh R. Ghazi | 1 | -0/+1 |
1999-01-07 | jcf-parse.c (yyparse): variable len changed from a char to an int to prevent ... | Andrew Haley | 1 | -2/+2 |
1999-01-06 | Fix copyrights. | Jeff Law | 1 | -1/+1 |
1999-01-06 | check-init.c: New file. | Per Bothner | 1 | -33/+53 |
1998-12-16 | jcf-parse.c (get_constant): Set TREE_TYPE for string constants. | Per Bothner | 1 | -1/+2 |