aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20030909-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/20030909-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/20030909-1.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/20030909-1.c b/gcc/testsuite/gcc.dg/20030909-1.c
new file mode 100644
index 00000000000..2a13270d0c0
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/20030909-1.c
@@ -0,0 +1,5 @@
+/* Verify that ands are combined. */
+/* { dg-do compile { target arm*-*-* strongarm*-*-* xscale*-*-* } } */
+/* { dg-options "-O" } */
+/* { dg-final { scan-assembler-not "#255.*#255" } } */
+int f(int a, int b) { return ((a & 0xff) + (b & 0xff)) & 0xff; }