* c-typeck.c (SAVE_SPELLING_DEPTH): Remove.
authorNeil Booth <neil@daikokuya.co.uk>
Sun, 21 Jul 2002 20:10:51 +0000 (20:10 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Sun, 21 Jul 2002 20:10:51 +0000 (20:10 +0000)
From-SVN: r55627

gcc/ChangeLog
gcc/c-typeck.c

index 0f5b87b1305252409cb9aa879ed15354c7c4335d..1ea0218800a8cca11281d7131961d0191d69c671 100644 (file)
@@ -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
index 0a70363f406a731ef07b91ba4407b2ea918e61e2..089375e904db1175134945b68d9434ebed129799 100644 (file)
@@ -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.  */