re PR target/68405 (trunk/gcc/config/i386/i386.c:22951: possible missing break ?)

gcc/

	PR target/68405
	* config/i386/i386.c (ix86_expand_mask_vec_cmp): Add missing
	break.

From-SVN: r230541
This commit is contained in:
Ilya Enkovich 2015-11-18 11:51:58 +00:00 committed by Ilya Enkovich
parent fdc54be6a0
commit 98f84050d6
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2015-11-18 Ilya Enkovich <enkovich.gnu@gmail.com>
PR target/68405
* config/i386/i386.c (ix86_expand_mask_vec_cmp): Add missing
break.
2015-11-18 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/68157

View file

@ -22949,6 +22949,8 @@ ix86_expand_mask_vec_cmp (rtx operands[])
case GEU:
case LTU:
unspec_code = UNSPEC_UNSIGNED_PCMP;
break;
default:
unspec_code = UNSPEC_PCMP;
}