From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Henderson To: liu@hepvms.physics.yale.edu (Weiwen Liu) Cc: egcs@cygnus.com Subject: Re: patch to clean up warning on alpha-dec-osf4.0 Date: Mon, 08 Sep 1997 16:04:00 -0000 Message-id: <199709082302.QAA05088@dot.cygnus.com> References: X-SW-Source: 1997-09/msg00317.html > ! sprintf (buf, "%s%d", t, (int) XEXP (x, 0)); > --- 6089,6099 ---- > ! sprintf (buf, "%s%d", t, !! XEXP (x, 0)); That's not correct. What is wanted is REGNO(x), and, just below, SUBREG_WORD(x). r~