From: Richard Kenner Date: Sat, 19 Sep 1992 19:47:28 +0000 (-0400) Subject: (struct var_refs_queue): Remove unused field ORIGINAL. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c56d91f8e71a1ae7d8bb3ad59d83dd3a621b8298;p=platform%2Fupstream%2Fgcc.git (struct var_refs_queue): Remove unused field ORIGINAL. Add new fields PROMOTED_MODE and UNSIGNEDP. From-SVN: r2176 --- 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; };