Bharati Bhole wrote: > Could anybody please tell me what gcc_assert does? And where is it > defined in gcc source code? Its used in genrecog.c (and other source > file as well). Its used at various places eg line no. 2535. Learn to use grep. It is a defined in gcc/system.h, and it does the same thing as standard assert() except with a friendlier error message and some cleanup routines. Brian