* config/i386/i386.c (ix86_vectorize_builtin_conversion): Never
vectorize if not TARGET_SSE2.
From-SVN: r151276
+2009-08-31 Chris Demetriou <cgd@google.com>
+
+ * config/i386/i386.c (ix86_vectorize_builtin_conversion): Never
+ vectorize if not TARGET_SSE2.
+
2009-08-28 Uros Bizjak <ubizjak@gmail.com>
* global.c (global_alloc): Do not calculate bitmatrix percentages
static tree
ix86_vectorize_builtin_conversion (unsigned int code, tree type)
{
- if (TREE_CODE (type) != VECTOR_TYPE
+ if (!TARGET_SSE2 || TREE_CODE (type) != VECTOR_TYPE
/* There are only conversions from/to signed integers. */
|| TYPE_UNSIGNED (TREE_TYPE (type)))
return NULL_TREE;