2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / gcc.target / sh / hiconst.c
blobd8911a52d78cf1a5005c42f89a6e45d59d1d2d14
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 char a;
5 int b;
7 int
8 foo (char *pt, int *pti)
10 a = 0;
11 b = 0;
12 *pt = 0;
13 *pti = 0;
16 int rab (char *pt, int *pti)
18 pt[2] = 0;
19 pti[3] = 0;
22 /* { dg-final { scan-assembler-times "mov\t#0" 2 } } */