diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-08 18:47:40 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-08 18:47:40 +0000 |
commit | af57a32b09a16e287bcc538fe37536b12ec371ce (patch) | |
tree | 0a8d76d9382c7ba797ae866e5fb4bdd7eb4036f2 /gcc | |
parent | 7ed49e448bde16f42ae0294815aaae187ac04e35 (diff) | |
download | gcc-af57a32b09a16e287bcc538fe37536b12ec371ce.tar.gz |
* c-common.h (C_ARTIFICIAL_STRING_P): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97849 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/c-common.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9b13173ddd9..f2e639c9bfb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -22,6 +22,8 @@ ATTR_FUNC_UNITS, ATTR_BLOCKAGE): Remove. (ATTR_STATIC): Adjust the value. + * c-common.h (C_ARTIFICIAL_STRING_P): Remove. + 2005-04-08 Ulrich Weigand <uweigand@de.ibm.com> * config/s390/tpf.h (ASM_SPEC): Define. diff --git a/gcc/c-common.h b/gcc/c-common.h index f313e6883ca..453739a3fca 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -218,10 +218,6 @@ struct sorted_fields_type GTY(()) These may be shadowed, and may be referenced from nested functions. */ #define C_DECLARED_LABEL_FLAG(label) TREE_LANG_FLAG_1 (label) -/* Flag strings given by __FUNCTION__ and __PRETTY_FUNCTION__ for a - warning if they undergo concatenation. */ -#define C_ARTIFICIAL_STRING_P(NODE) TREE_LANG_FLAG_0 (NODE) - typedef enum c_language_kind { clk_c = 0, /* C90, C94 or C99 */ |