testsuite: fix typo in testcase pr99492.c

gcc/testsuite/ChangeLog:

	* gcc.target/powerpc/pr99492.c: Fix typo.
This commit is contained in:
David Edelsohn 2021-03-14 20:29:14 -04:00
parent 9844eeff5a
commit 52b67943d1

View File

@ -1,7 +1,7 @@
/* { dg-do run { target { powerpc*-ibm-aix* } } } */
/* { dg-options "" } */
void abort (void);
extern void abort (void);
struct A {
double _Complex a[64];
@ -26,10 +26,10 @@ int main() {
abort();
if (__alignof(struct A) != 8)
abort;
abort();
if (__alignof(struct C) != 4)
abort;
abort();
if (__builtin_offsetof(struct C, c2) != 4)
abort();