Hello, On Mon, 2014-08-11 at 23:24 +0530, navin p wrote: > Hi, > Is there any way i can see the compiler generated copy constructor > and default constructor/destructor as a .cpp file instead of assembly > ? Any flags to g++, > Since you haven't specified what kind of information you want to have about the generated functions, one can only guess. Maybe looking at some of the tree/RTL dumps (try option -fdump-tree-all-details or -fdump-rtl-all-details see https://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html#Debugging-Options for details) might contain the information you're looking for. Notice however, that the generated functions might get optimized away completely after they have been inlined into the caller. Cheers, Oleg