This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: don't name temporary variables



On 10/09/2004, at 5:27 PM, Daniel Berlin wrote:


This should probably be predicated on ENABLE_CHECKING being off.
Otherwise, you only the UID to go by, and that looks incredibly ugly.

Would it help if the UID was printed as 'D.xxxx' instead of '<Dxxxxx>'?


I don't see much difference between

const PropertyList* TPropertyList::AsPropertyList() const (this)
{
  struct PropertyList * <D129636>;

  <D129636> = this->fPropertyList;
  goto <D188185>;
  <D188185>:;
  return <D129636>;
}

const PropertyList* TPropertyList::AsPropertyList() const (this)
{
  struct PropertyList * T.2229;

  T.2229 = this->fPropertyList;
  goto <D188185>;
  <D188185>:;
  return T.2229;
}

otherwise.

Attachment: smime.p7s
Description: S/MIME cryptographic signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]