980626-1.c: Delete this test.

* gcc.dg/980626-1.c: Delete this test.  We've declared the warning
        this test triggers valid.

From-SVN: r22104
This commit is contained in:
Jeffrey A Law 1998-08-30 16:40:20 +00:00 committed by Jeff Law
parent 797990edb5
commit 5acc5ee946
2 changed files with 5 additions and 16 deletions

View File

@ -1,3 +1,8 @@
Sun Aug 30 17:38:20 1998 Jeffrey A Law (law@cygnus.com)
* gcc.dg/980626-1.c: Delete this test. We've declared the warning
this test triggers valid.
Thu Aug 27 23:59:18 1998 Jeffrey A Law (law@cygnus.com)
* gcc.dg/980827-1.c: New test.

View File

@ -1,16 +0,0 @@
/* { dg-do compile } */
/* { dg-options -Wimplicit-int } */
/* { dg-excess-errors "c-decl.c:grokdeclarator does not handle mode attributes" { xfail *-*-* } } */
int main()
{
typedef SFtype __attribute__ ((mode (SF)));
typedef DFtype __attribute__ ((mode (DF)));
typedef HItype __attribute__ ((mode (HI)));
typedef SItype __attribute__ ((mode (SI)));
typedef DItype __attribute__ ((mode (DI)));
typedef UHItype __attribute__ ((mode (HI)));
typedef USItype __attribute__ ((mode (SI)));
typedef UDItype __attribute__ ((mode (DI)));
return 0;
}