Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/cpp/expr.c @ 145:1830386684a0
gcc-9.2.0
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 11:34:05 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 /* Copyright (C) 2000, 2001 Free Software Foundation, Inc. */ |
2 | |
3 /* { dg-do preprocess } */ | |
4 | |
5 /* Test we get signedness of ?: operator correct. We would skip | |
6 evaluation of one argument, and might therefore not transfer its | |
7 unsignedness to the result. */ | |
8 | |
9 /* Neil Booth, 19 Jul 2002. */ | |
10 | |
11 #if (1 ? -2: 0 + 1U) < 0 | |
12 #error /* { dg-bogus "error" } */ | |
13 #endif | |
14 | |
15 #if (0 ? 0 + 1U: -2) < 0 | |
16 #error /* { dg-bogus "error" } */ | |
17 #endif |