diff options
author | fche <fche@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-15 17:33:01 +0000 |
---|---|---|
committer | fche <fche@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-15 17:33:01 +0000 |
commit | c5344b58abd22c52e83e69147cad673f44c9edf4 (patch) | |
tree | 678afa505aa61ebca61ca94c5b86847a30a9aae6 /gcc/coverage.c | |
parent | b1fd5525e274332bd0e31857577e289d4ca5d6df (diff) | |
download | gcc-c5344b58abd22c52e83e69147cad673f44c9edf4.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84760 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/coverage.c')
-rw-r--r-- | gcc/coverage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/coverage.c b/gcc/coverage.c index 15a6a41873e..888d5cde2c3 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -939,7 +939,7 @@ create_coverage (void) append_to_statement_list (t, &body); /* Generate a constructor to run it. */ - cgraph_build_static_cdtor ('I', body); + cgraph_build_static_cdtor ('I', body, DEFAULT_INIT_PRIORITY); } /* Perform file-level initialization. Read in data file, generate name |