Re: Seeking clarification and way forward on limited scope variables.

2020-06-09 Thread Richard Biener via Gcc
On Tue, Jun 9, 2020 at 8:00 AM Tomar, Sourabh Singh wrote: > > [AMD Official Use Only - Internal Distribution Only] > > Hello Everyone, > > I need to have your thoughts on this. > > Consider the following test case -- > --- > 1int main(int Argc, char **

Seeking clarification and way forward on limited scope variables.

2020-06-08 Thread Tomar, Sourabh Singh
[AMD Official Use Only - Internal Distribution Only] Hello Everyone, I need to have your thoughts on this. Consider the following test case -- --- 1int main(int Argc, char **Argv) { 2 int Local = 6; 3 printf("%d\n",Local); 4 5