[PATCH, PR target/68405, i386, committed] Add missing break

Ilya Enkovich enkovich.gnu@gmail.com
Wed Nov 18 12:04:00 GMT 2015


Hi,

This patch adds missing break for ix86_expand_mask_vec_cmp.  Bootstrapped and tested on x86_64-unknown-linux-gnu.  Committed to trunk as obvious.

Thanks,
Ilya
--
gcc/

2015-11-18  Ilya Enkovich  <enkovich.gnu@gmail.com>

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


diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index 6173dae..43cbdfb 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -22948,6 +22948,8 @@ ix86_expand_mask_vec_cmp (rtx operands[])
     case GEU:
     case LTU:
       unspec_code = UNSPEC_UNSIGNED_PCMP;
+      break;
+
     default:
       unspec_code = UNSPEC_PCMP;
     }



More information about the Gcc-patches mailing list