view gcc/testsuite/g++.dg/ext/packed7.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR c++/14124
// A packed enum uses the minimal underlying type.

// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Matt Austern  <austern@apple.com>

// { dg-do run }

enum XXX { xyzzy = 3 } __attribute__((packed));

int main()
{
  int enumsize = sizeof(xyzzy);
  return (enumsize == 1) ? 0 : 1;
}