Commit c56d91f8 by Richard Kenner

(struct var_refs_queue): Remove unused field ORIGINAL.

Add new fields PROMOTED_MODE and UNSIGNEDP.

From-SVN: r2176
parent 00d8a4c1
/* Structure for saving state for a nested function. /* 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. This file is part of GNU CC.
...@@ -28,7 +28,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -28,7 +28,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
struct var_refs_queue struct var_refs_queue
{ {
rtx modified; rtx modified;
rtx original; enum machine_mode promoted_mode;
int unsignedp;
struct var_refs_queue *next; struct var_refs_queue *next;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment