]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/pr17036-1.c
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / pr17036-1.c
1 /* { dg-do compile } */
2
3 int main ()
4 {
5   int R, N = 4;
6   unsigned int A = 2;
7   signed int B = 2;
8   ((B >> N) & 1) ? 1 : 0;
9   ((A >> N) & 1) ? 1 : 0;
10   return 0;
11 }