aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@redhat.com>2004-07-15 17:33:01 +0000
committerFrank Ch. Eigler <fche@gcc.gnu.org>2004-07-15 17:33:01 +0000
commit35b6fdcfc2ea1cc14b04038dadae2a52792ea5eb (patch)
tree678afa505aa61ebca61ca94c5b86847a30a9aae6 /gcc/java
parent3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9 (diff)
downloadgcc-35b6fdcfc2ea1cc14b04038dadae2a52792ea5eb.zip
gcc-35b6fdcfc2ea1cc14b04038dadae2a52792ea5eb.tar.gz
gcc-35b6fdcfc2ea1cc14b04038dadae2a52792ea5eb.tar.bz2
* Fix for g++/15861
2004-07-15 Frank Ch. Eigler <fche@redhat.com> g++/15861 * cgraphunit.c (cgraph_build_static_cdtor): Add priority argument. * cgraph.h: Update declaration. * c-decl.c (build_cdtor): Update call with default priority. * coverage.c (create_coverage): Ditto. * tree-mudflap.c (mf_init_fndecl): New tree. (mudflap_init): Set it. (mudflap_register_call): Arrange to call __mf_init before the first __mf_register call. (mudflap_finish_file): Mark the mudflap static initializer as extra high priority, to beat all C++ static constructors. 2004-07-15 Frank Ch. Eigler <fche@redhat.com> g++/15861 * jcf-parse.c (java_emit_static_constructor): Specify default priority. From-SVN: r84760
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog6
-rw-r--r--gcc/java/jcf-parse.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index b111dad..76bef66 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,9 @@
+2004-07-15 Frank Ch. Eigler <fche@redhat.com>
+
+ g++/15861
+ * jcf-parse.c (java_emit_static_constructor): Specify default
+ priority.
+
2004-07-13 Per Bothner <per@bothner.com>
* java-tree.h (all_class_filename): Remove useless macro.
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c
index 07f8ccc..5a0a87f 100644
--- a/gcc/java/jcf-parse.c
+++ b/gcc/java/jcf-parse.c
@@ -887,7 +887,7 @@ java_emit_static_constructor (void)
write_resource_constructor (&body);
if (body)
- cgraph_build_static_cdtor ('I', body);
+ cgraph_build_static_cdtor ('I', body, DEFAULT_INIT_PRIORITY);
}
void