This is the mail archive of the gcc@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: Store-copyprop not very bright



On Sep 6, 2005, at 8:21 AM, Steven Bosscher wrote:


Hi,

Consider this little snippet:
====================================
int x;

int
foo (int a)
{
  x = a;
  return x + 3;
}
====================================
Likewise for:
int
foo (int a, int *x)
{
  *x = a;
  return *x + 3;
}

-- Pinski


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