Re: [PING] [PATCH] PR preprocessor/48532 (Wrong location in pragma involving macros)

2011-06-06 Thread Dodji Seketeli
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

Re: [PING] [PATCH] PR preprocessor/48532 (Wrong location in pragma involving macros)

2011-06-03 Thread Tom Tromey
> "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

[PING] [PATCH] PR preprocessor/48532 (Wrong location in pragma involving macros)

2011-06-03 Thread Dodji Seketeli
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

[PATCH] PR preprocessor/48532 (Wrong location in pragma involving macros)

2011-04-10 Thread Dodji Seketeli
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) ; } ~=~