Tom Tromey a écrit:
> Dodji> + context of 'P'. The problem is, if we are beeing
>
> Typo, "being".
>
> Ok with that fixed.
Thanks. Fixed and committed to revision r174694.
--
Dodji
> "Dodji" == Dodji Seketeli writes:
Dodji> I am pinging this patch first posted to
Dodji> http://gcc.gnu.org/ml/gcc-patches/2011-04/msg00697.html.
Thanks, and sorry for not noticing earlier.
Dodji> +context of 'P'. The problem is, if we are beeing
Typo, "being".
Ok with t
I am pinging this patch first posted to
http://gcc.gnu.org/ml/gcc-patches/2011-04/msg00697.html.
--- Begin Message ---
Hello,
While looking at something else, I noticed that preprocessing this
code snippet:
cat -n test.c
~=~
void foo (void)
{
int i1, j1, k1;
#define p parallel
#define P(x) pr
Hello,
While looking at something else, I noticed that preprocessing this
code snippet:
cat -n test.c
~=~
void foo (void)
{
int i1, j1, k1;
#define p parallel
#define P(x) private (x##1)
#define S(x) shared (x##1)
#define F(x) firstprivate (x##1)
#pragma omp p P(i) \
S(j) \
F(k)
;
}
~=~