diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-29 17:11:10 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-29 17:11:10 +0000 |
commit | f4e29b4adc6b3ab3539ec954b51b0960311543f8 (patch) | |
tree | 2c990a5ffb1b45a079e80a40b57237825469e8ad /libiberty | |
parent | 2ba80634f9866bf4a29d63f6418e34c459fc2117 (diff) | |
download | gcc-f4e29b4adc6b3ab3539ec954b51b0960311543f8.tar.gz |
* cplus-dem.c (PREPEND_BLANK): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55837 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/cplus-dem.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 5d9552fb3e7..ac472f336de 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2002-07-29 Neil Booth <neil@daikokuya.co.uk> + + * cplus-dem.c (PREPEND_BLANK): Remove. + 2002-07-10 Jason Merrill <jason@redhat.com> * cp-demangle.c (demangle_identifier): Support extended Unicode diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index 203e30dba24..995757c62de 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -305,8 +305,6 @@ const struct demangler_engine libiberty_demanglers[] = }; #define STRING_EMPTY(str) ((str) -> b == (str) -> p) -#define PREPEND_BLANK(str) {if (!STRING_EMPTY(str)) \ - string_prepend(str, " ");} #define APPEND_BLANK(str) {if (!STRING_EMPTY(str)) \ string_append(str, " ");} #define LEN_STRING(str) ( (STRING_EMPTY(str))?0:((str)->p - (str)->b)) |