(struct var_refs_queue): Remove unused field ORIGINAL.
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 19 Sep 1992 19:47:28 +0000 (15:47 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 19 Sep 1992 19:47:28 +0000 (15:47 -0400)
Add new fields PROMOTED_MODE and UNSIGNEDP.

From-SVN: r2176

gcc/function.h

index a473818..eb4abf0 100644 (file)
@@ -1,5 +1,5 @@
 /* Structure for saving state for a nested function.
-   Copyright (C) 1989 Free Software Foundation, Inc.
+   Copyright (C) 1989, 1992 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -28,7 +28,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 struct var_refs_queue
   {
     rtx modified;
-    rtx original;
+    enum machine_mode promoted_mode;
+    int unsignedp;
     struct var_refs_queue *next;
   };