aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/xstormy16/data_below100/14_set_b100w_bit_8.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/xstormy16/data_below100/14_set_b100w_bit_8.c')
-rw-r--r--gcc/testsuite/gcc.target/xstormy16/data_below100/14_set_b100w_bit_8.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/xstormy16/data_below100/14_set_b100w_bit_8.c b/gcc/testsuite/gcc.target/xstormy16/data_below100/14_set_b100w_bit_8.c
new file mode 100644
index 00000000000..cc337fc0426
--- /dev/null
+++ b/gcc/testsuite/gcc.target/xstormy16/data_below100/14_set_b100w_bit_8.c
@@ -0,0 +1,19 @@
+/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */
+/* { dg-final { scan-assembler "set1 B100\\+1,#0" } } */
+
+char acDummy[0xf0] __attribute__ ((__BELOW100__));
+unsigned short B100 __attribute__ ((__BELOW100__)) = 0x1234;
+unsigned short *p = &B100;
+
+void
+Do (void)
+{
+ B100 |= 0x0100;
+}
+
+int
+main (void)
+{
+ Do ();
+ return (*p == 0x1334) ? 0 : 1;
+}