This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

lto is streamable?


Hi,

There's a function in lto-streamer-out.c which determines if a tree is streamable. 
This is lto_is_streamable? I have a LANG_TYPE that I want to stream and adding to that function:
#ifdef TARGET_MYPORT
if (code == LANG_TYPE)
   return true;
#endif 

sorts the problem out but my question is, why do we need to exclude is_lang_specific(expr) from streamable trees and is there a workaround to allow this without changing the core?

Paulo Matos



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]