Re: XDELETEVEC

2008-03-25 Thread Richard Guenther
od idea of > course. So I expected to see memory freed with the corresponding macro > XDELETEVEC and was surprised to find out that it is being freed with > the simple "free" function in the most cases. > > [EMAIL PROTECTED]:~/gcc/src/libcpp$ grep XDELETEVEC * | wc

XDELETEVEC

2008-03-25 Thread Alexey Salmin
Hello! I'm learning my way around the gcc lexer/cpplib code and I have a question about the way it works with memory buffers. It seems that arrays are allocated with XNEWVEC macro - generally a good idea of course. So I expected to see memory freed with the corresponding macro XDELETEVEC an