> -----Original Message----- > From: Jakub Jelinek [mailto:ja...@redhat.com] > Sent: Thursday, December 19, 2013 2:40 AM > To: Iyer, Balaji V > Cc: Jason Merrill (ja...@redhat.com); 'gcc@gcc.gnu.org' > Subject: Re: Question about omp-low.c > > On Thu, Dec 19, 2013 at 05:14:16AM +0000, Iyer, Balaji V wrote: > > I looked into this, but the issue I have is, for the following code: > > > > Int main (void) { > > _Cilk_for (int ii = W; ii < (X+Y); ii = ii + (q+z)) > > This doesn't have a body, Int won't compile either. Can you post -fdump- > tree-{original,gimple,omplower,ompexp} dump for some short simple > testcase just to see what design decisions you've made so far? Perhaps > something should be reconsidered...
Yes I didn't put a body because it wasn't relevant for what I was talking about. I wanted to talk about parameters of the _Cilk_for. The body should be pushed into the child function and that is straight forward. Int is int after Outlook decided to capitalize it :-) and I forgot to undo it :-( > > Jakub