1 /* { dg-do compile } */
2 /* { dg-add-options vect_early_break } */
3 /* { dg-require-effective-target vect_early_break } */
4 /* { dg-require-effective-target vect_int } */
5 /* { dg-additional-options "-w" } */
7 typedef const unsigned char *It
;
8 It
DecodeSLEB128(It begin
, It end
, int *v
) {
17 int slice
= byte
& 0x7f;
18 value
|= slice
<< shift
;
19 } while (byte
>= 128);