This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH, i386]: Committed: Macroize s<cc> and b<cc> patterns
Kaveh R. GHAZI wrote:
Index: i386.h
===================================================================
--- i386.h (revision 133145)
+++ i386.h (working copy)
@@ -691,6 +691,10 @@
builtin_define ("__SSE_MATH__"); \
if (TARGET_SSE_MATH && TARGET_SSE2) \
builtin_define ("__SSE2_MATH__"); \
+ \
+ /* Define inline functions with immediate arguments. */ \
+ if (optimize && !flag_keep_inline_functions) \
+ builtin_define ("__SSE_USE_INLINED_FUNC__"); \
} \
while (0)
The i386.h hunk wasn't mentioned in the ChangeLog and doesn't seem related
to this patch.
This part was present in posted diff only, not in the commit itself.
Uros.