source:
trunk/src/gcc/gcc/testsuite/gcc.c-torture/execute/950503-1.c@
2
Last change on this file since 2 was 2, checked in by , 22 years ago | |
---|---|
|
|
File size: 213 bytes |
Line | |
---|---|
1 | main () |
2 | { |
3 | int tmp; |
4 | unsigned long long utmp1, utmp2; |
5 | |
6 | tmp = 16; |
7 | |
8 | utmp1 = (~((unsigned long long) 0)) >> tmp; |
9 | utmp2 = (~((unsigned long long) 0)) >> 16; |
10 | |
11 | if (utmp1 != utmp2) |
12 | abort (); |
13 | exit (0); |
14 | } |
15 |
Note:
See TracBrowser
for help on using the repository browser.