Commit 0ce659eb by Alexandre Oliva Committed by Alexandre Oliva

i386.c (ix86_vectorize_builtin_vec_perm): Silence bogus uninitialized warning.

* config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Silence
bogus uninitialized warning.

From-SVN: r155759
parent cd792a94
2010-01-09 Alexandre Oliva <aoliva@redhat.com>
* config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Silence
bogus uninitialized warning.
2010-01-09 Richard Guenther <rguenther@suse.de>
PR middle-end/42512
......
......@@ -28886,7 +28886,7 @@ ix86_vectorize_builtin_vec_perm (tree vec_type, tree *mask_type)
tree itype = TREE_TYPE (vec_type);
bool u = TYPE_UNSIGNED (itype);
enum machine_mode vmode = TYPE_MODE (vec_type);
enum ix86_builtins fcode;
enum ix86_builtins fcode = fcode; /* Silence bogus warning. */
bool ok = TARGET_SSE2;
switch (vmode)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment