blob: 24601ca6bff3a4d0f9fe16244096b11faf84b328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* PR target/50749: Verify that pre-decrement addressing is generated
inside a loop. */
/* { dg-do compile { target "sh*-*-*" } } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-times "mov.b\tr\[0-9]\+,@-r\[0-9]\+" 3 { xfail *-*-*} } } */
/* { dg-final { scan-assembler-times "mov.w\tr\[0-9]\+,@-r\[0-9]\+" 3 { xfail *-*-*} } } */
/* { dg-final { scan-assembler-times "mov.l\tr\[0-9]\+,@-r\[0-9]\+" 3 { xfail *-*-*} } } */
char*
test_func_00 (char* p, int c, int x)
{
do
{
*--p = (char)x;
*--p = (char)x;
*--p = (char)x;
} while (--c);
return p;
}
short*
test_func_01 (short* p, int c, int x)
{
do
{
*--p = (short)x;
*--p = (short)x;
*--p = (short)x;
} while (--c);
return p;
}
int*
test_func_02 (int* p, int c, int x)
{
do
{
*--p = x;
*--p = x;
*--p = x;
} while (--c);
return p;
}
|