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]
Other format: [Raw text]

Re: [PATCH, i386] Optionally use %xmm0 to return float and/or doublevalues


Hello!

Just a small "optimization":

+  /* Floating point return values in %st(0), but with several exceptions.  */
+  can_use_sse = (TARGET_SSE && mode == SFmode)
+		|| (TARGET_SSE2 && mode == DFmode);

can_use_sse = SSE_FLOAT_MODE_P(mode)

Uros.


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