* gcc.dg/990214-1.c: New test.

From-SVN: r25185
This commit is contained in:
Jeffrey A Law 1999-02-14 00:27:28 +00:00 committed by Jeff Law
parent 9f4ec51572
commit 22f8036e5f
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sun Feb 14 01:26:29 1999 Jeffrey A Law (law@cygnus.com)
* gcc.dg/990214-1.c: New test.
Sat Feb 13 00:43:52 1999 Jeffrey A Law (law@cygnus.com)
* gcc.dg/990213-2.c: New test.

View File

@ -0,0 +1,15 @@
/* { dg-do compile { target i?86-*-* } } */
/* { dg-options "-fPIC" } */
typedef int int64_t __attribute__ ((__mode__ ( __DI__ ))) ;
unsigned *
bar (int64_t which)
{
switch (which & 15 ) {
case 0 :
break;
case 1 :
case 5 :
case 2 :
}
}