From: Mark Mitchell Date: Sun, 5 Dec 1999 02:51:32 +0000 (+0000) Subject: Fix another typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a50ed344fe8bf897789aea0171c2a93272f0ed6;p=gcc.git Fix another typo From-SVN: r30785 --- diff --git a/gcc/testsuite/g++.old-deja/g++.abi/align.C b/gcc/testsuite/g++.old-deja/g++.abi/align.C index a6333849d7c..e82e6ee00a4 100644 --- a/gcc/testsuite/g++.old-deja/g++.abi/align.C +++ b/gcc/testsuite/g++.old-deja/g++.abi/align.C @@ -22,6 +22,8 @@ alignmentof () #define alignof(type) (alignmentof ()) +enum A { a }; + int main () { @@ -61,9 +63,9 @@ main () return 17; if (alignof (unsigned int) != 4) return 18; - if (sizeof (enum { a }) != 4) + if (sizeof (enum A) != 4) return 19; - if (alignof (enum { a }) != 4) + if (alignof (enum A) != 4) return 20; #ifdef HAVE_IA64_TYPES if (sizeof (__int64) != 8)