aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/cpp/if-shift.c
blob: a55420a79bf8c379aae33b6876cb1672d5a84dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright (C) 2000 Free Software Foundation, Inc.  */

/* { dg-do preprocess } */

/* Test shift operators.  */

#if 1 << 4 != 16
#error		/* { dg-bogus "error" "<< +ve shift" } */
#endif

#if 19 >> 2 != 4
#error		/* { dg-bogus "error" ">> +ve shift" } */
#endif

#if 17 << -2 != 17 >> 2
#error		/* { dg-bogus "error" "<< -ve shift" } */
#endif

#if 25 >> -2 != 25 << 2
#error		/* { dg-bogus "error" ">> -ve shift" } */
#endif