aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/xstormy16/data_below100/10_set_b100b_bit_0.c
blob: f81d26a3c2d0760233c7fc344a00ff225fc56df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
/* { dg-final { scan-assembler "set1 B100,#0" } } */

char acDummy[0xf0] __attribute__ ((__BELOW100__));
unsigned char B100 __attribute__ ((__BELOW100__)) = 0x34;
unsigned char *p = &B100;

void
Do (void)
{
  B100 |= 0x01;
}

int
main (void)
{
  Do ();
  return (*p == 0x35) ? 0 : 1;
}