Re: PING: [PATCH diagnostics] Make unwound macro expansion trace less redundant

2012-05-24 Thread Dodji Seketeli
Gabriel Dos Reis writes: > On Thu, May 24, 2012 at 11:07 AM, Dodji Seketeli wrote: >> PING: http://gcc.gnu.org/ml/gcc-patches/2012-05/msg01003.html > > Sorry, this slipped under my radar. No problem. > Patch is OK. Thank you. Applied to trunk, revision r187845. -- Dodji

Re: PING: [PATCH diagnostics] Make unwound macro expansion trace less redundant

2012-05-24 Thread Gabriel Dos Reis
On Thu, May 24, 2012 at 11:07 AM, Dodji Seketeli wrote: > PING: http://gcc.gnu.org/ml/gcc-patches/2012-05/msg01003.html Sorry, this slipped under my radar. Patch is OK. -- Gaby

PING: [PATCH diagnostics] Make unwound macro expansion trace less redundant

2012-05-24 Thread Dodji Seketeli
PING: http://gcc.gnu.org/ml/gcc-patches/2012-05/msg01003.html Dodji Seketeli writes: > Hello, > > As discussed previously, the unwinder for macro expansion is quite > verbose [1]. This patch proposes to address that shortcoming. > > Consider this test case: > > $ cat -n test.c >1

[PATCH diagnostics] Make unwound macro expansion trace less redundant

2012-05-15 Thread Dodji Seketeli
Hello, As discussed previously, the unwinder for macro expansion is quite verbose [1]. This patch proposes to address that shortcoming. Consider this test case: $ cat -n test.c 1 #define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); \ 2 __typeof__(B) __b