aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-12-05 02:51:32 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-12-05 02:51:32 +0000
commit1a50ed344fe8bf897789aea0171c2a93272f0ed6 (patch)
tree30e2fdf458d3a74a1e9dac0a30a1f5239a7c6767 /gcc
parent5679f678630cb03ba76592a426981297c0203d47 (diff)
downloadgcc-1a50ed344fe8bf897789aea0171c2a93272f0ed6.zip
gcc-1a50ed344fe8bf897789aea0171c2a93272f0ed6.tar.gz
gcc-1a50ed344fe8bf897789aea0171c2a93272f0ed6.tar.bz2
Fix another typo
From-SVN: r30785
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.abi/align.C6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.abi/align.C b/gcc/testsuite/g++.old-deja/g++.abi/align.C
index a633384..e82e6ee 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<type> ())
+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)