From c56d91f8e71a1ae7d8bb3ad59d83dd3a621b8298 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 19 Sep 1992 15:47:28 -0400 Subject: [PATCH] (struct var_refs_queue): Remove unused field ORIGINAL. Add new fields PROMOTED_MODE and UNSIGNEDP. From-SVN: r2176 --- gcc/function.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/function.h b/gcc/function.h index a473818..eb4abf0 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -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; }; -- 2.7.4