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: Implementing OpenMP pragmas for the C front end


David Edelsohn wrote:-

> 	Unfortunately, this is a public standard.  Somehow we need to be
> compatible. 
> 
> 	What we really want is some way of converting
> 
> #pragma omp flush (x)
> 
> to
> 
> __builtin_omp_flush (x);
> 
> which is a more natural way of implementing this and would allow semantic
> error checking.

On second thoughts it's possibly not as bad as I thought.  I had in mind
that the #pragma callbacks would be conditional on parser state; of
course that needn't be the implementation.  The callbacks should happen
regardless, and the front end should ignore/reject appropriately.

Neil.


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