diff options
author | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-01 00:50:21 +0000 |
---|---|---|
committer | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-01 00:50:21 +0000 |
commit | dd4537d90e956fcfbb2cd99e71650142cd5dfca3 (patch) | |
tree | d18686a6bbfac2c098395dcdaa2791a26ed932bb /gcc | |
parent | b8066bf496c6a7b0cd6884f63daead536566ffad (diff) | |
download | gcc-dd4537d90e956fcfbb2cd99e71650142cd5dfca3.tar.gz |
* config/i386/cygming.h (NO_PROFILE_COUNTERS): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100419 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/cygming.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ec8ed235f8e..4773bb70763 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-06-01 Danny Smith <dannysmith@users.sourceforge.net> + + * config/i386/cygming.h (NO_PROFILE_COUNTERS): Define. + 2005-05-31 Geoffrey Keating <geoffk@geoffk.org> * config/rs6000/rs6000.md (sync_boolcshort_internal): New. diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h index 6b78909b5e3..4c63729cf10 100644 --- a/gcc/config/i386/cygming.h +++ b/gcc/config/i386/cygming.h @@ -403,6 +403,10 @@ extern int i386_pe_dllimport_name_p (const char *); /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */ \ { "selectany", 0, 0, true, false, false, ix86_handle_selectany_attribute } +/* mcount() does not need a counter variable. */ +#undef NO_PROFILE_COUNTERS +#define NO_PROFILE_COUNTERS 1 + #undef TREE #ifndef BUFSIZ |