File: n_13_5.c

package info (click to toggle)
mcpp 2.7.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,024 kB
  • ctags: 29,151
  • sloc: ansic: 35,191; sh: 9,231; makefile: 176; cpp: 84; exp: 18
file content (25 lines) | stat: -rw-r--r-- 708 bytes parent folder | download | duplicates (8)
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
/* n_13_5.c:    Arithmetic conversion in #if expressions.   */

/* 13.5:    The usual arithmetic conversion is not performed on bit shift.  */
#if     -1 << 3U > 0
#error  Bad conversion of bit shift operands.
#endif

/* 13.6:    Usual arithmetic conversions.   */
#if     -1 <= 0U        /* -1 is converted to unsigned long.    */
#error  Bad arithmetic conversion.
#endif

#if     -1 * 1U <= 0
#error  Bad arithmetic conversion.
#endif

/* Second and third operands of conditional operator are converted to the
#error      same type, thus -1 is converted to unsigned long.    */
#if     (1 ? -1 : 0U) <= 0
#error  Bad arithmetic conversion.
#endif

/* { dg-do preprocess }
   { dg-options "-ansi -w" }
 */