1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 int
5 f1 (int x, int t)
6 {
7 if (x == -1 || x == -2)
8 t = 1;
9
10 return t;
11 }
12
13 /* { dg-final { scan-assembler-times "cmn\\tw\[0-9\]+, #2" 1 } } */