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]

AST of gcc ?


Dear friends:

         I have read the internal document for several times,I have read some other documents about ast tree of gcc.while I can't make sure what the ast shoule be.For example ,for the below c code ,what's the ast of it,can you picture the ast of it ?

the c function is:

g()

{                                          

	int i,j;

    

	i = 0;

    j = 0;

       

    while(j <0)

	{

		if(i >0)

		{	

			i = i + j;

			break;

		}

		else

		{

			i = 10;

			continue;

		}

    }

    

	j= j + 10;



}
______________________________________
______________________________________

===================================================================
免费试用新浪15M收费邮箱 赶紧行动! (http://vip.sina.com/sol_mail/promotion/pro_men.html)
新浪二手市场:一元投入,十分惊喜,百分满意 (http://classad.sina.com.cn/2shou/)
数万张手机图片数万首短信铃声任你挑选,每天都有更新 (http://sms.sina.com.cn/cgi-bin/sms/smspic.cgi)


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