diff options
Diffstat (limited to 'regress/usr.bin/pcc/ccom/switch003.c')
-rw-r--r-- | regress/usr.bin/pcc/ccom/switch003.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/regress/usr.bin/pcc/ccom/switch003.c b/regress/usr.bin/pcc/ccom/switch003.c deleted file mode 100644 index c6bcf90cfe7..00000000000 --- a/regress/usr.bin/pcc/ccom/switch003.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Returns 1 if sizeof(unsigned long) < sizeof(unsigned long long), but - * should return 0. - */ -int -main(int argc, char **argv) -{ - unsigned long long i = (unsigned long)~0 + (unsigned long long)2; - - switch (i) { - case 1: - return 1; - } - - return 0; -} |