aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/sh/pr50749-qihisi-predec-1.c
blob: 4f455743cfc83a9f59bf335482072dadd07f2675 (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
/* PR target/50749: Verify that pre-decrement addressing is generated.  */
/* { dg-do compile }  */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-times "mov.b\tr\[0-9]\+,@-r\[0-9]\+" 1 { xfail *-*-*} } } */
/* { dg-final { scan-assembler-times "mov.w\tr\[0-9]\+,@-r\[0-9]\+" 1 { xfail *-*-*} } } */
/* { dg-final { scan-assembler-times "mov.l\tr\[0-9]\+,@-r\[0-9]\+" 1 { xfail *-*-*} } } */

char*
test_func_00 (char* p, int c)
{
  *--p = (char)c;
  return p;
}

short*
test_func_01 (short* p, int c)
{
  *--p = (short)c;
  return p;
}

int*
test_func_02 (int* p, int c)
{
  *--p = c;
  return p;
}