This is the mail archive of the gcc-patches@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]

Re: Support 64 or 80 bit long double for i960


I don't understand what question you are trying to ask.

	How can LONG_DOUBLE_TYPE_SIZE be changed at run time?

You use the -flong-double-64 option (or whatever it is called).

	#define LONG_DOUBLE_TYPE_SIZE (TARGET_LONG_DOUBLE_64 ? 64 : 96)

	#if LONG_DOUBLE_TYPE_SIZE == 64

This code won't work.  You can't test the value of a run-time variable
in a compile-time preprocessor conditional.

Jim


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