diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-07-21 20:10:51 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-07-21 20:10:51 +0000 |
commit | c89d1dfd8b0598c7c4ba84eca7ce89241610610a (patch) | |
tree | 8bc020fadd08a243e1059f1aa75f586f359ebdf0 /gcc | |
parent | 4669036917f42b1cdbf4ef2e4440648e8891f289 (diff) | |
download | gcc-c89d1dfd8b0598c7c4ba84eca7ce89241610610a.zip gcc-c89d1dfd8b0598c7c4ba84eca7ce89241610610a.tar.gz gcc-c89d1dfd8b0598c7c4ba84eca7ce89241610610a.tar.bz2 |
* c-typeck.c (SAVE_SPELLING_DEPTH): Remove.
From-SVN: r55627
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-typeck.c | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0f5b87b..1ea0218 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-07-21 Neil Booth <neil@daikokuya.co.uk> + + * c-typeck.c (SAVE_SPELLING_DEPTH): Remove. + Sun Jul 21 21:36:41 CEST 2002 Jan Hubicka <jh@suse.cz> * gcse.c (do_local_cprop): Do not extend lifetimes of registers set by diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 0a70363..089375e 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -4511,15 +4511,6 @@ static int spelling_size; /* Size of the spelling stack. */ #define SPELLING_DEPTH() (spelling - spelling_base) #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH)) -/* Save and restore the spelling stack around arbitrary C code. */ - -#define SAVE_SPELLING_DEPTH(code) \ -{ \ - int __depth = SPELLING_DEPTH (); \ - code; \ - RESTORE_SPELLING_DEPTH (__depth); \ -} - /* Push an element on the spelling stack with type KIND and assign VALUE to MEMBER. */ |