* gcc.c-torture/execute/bitfld-2.c: New test.
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 2 Feb 2002 09:28:25 +0000 (09:28 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 2 Feb 2002 09:28:25 +0000 (09:28 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49438 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/bitfld-2.c [new file with mode: 0644]

index 13dd94e..5d8541b 100644 (file)
@@ -4,6 +4,8 @@
 
        * gcc.dg/20020201-3.c: New test.
 
+       * gcc.c-torture/execute/bitfld-2.c: New test.
+
 2002-02-02  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * gcc.dg/bitfld-1.c: Update.
diff --git a/gcc/testsuite/gcc.c-torture/execute/bitfld-2.c b/gcc/testsuite/gcc.c-torture/execute/bitfld-2.c
new file mode 100644 (file)
index 0000000..445879b
--- /dev/null
@@ -0,0 +1,28 @@
+/* Test whether bit field boundaries aren't advanced if bit field type
+   has alignment large enough.  */
+extern void abort (void);
+extern void exit (int);
+
+struct A {
+  unsigned short a : 5;
+  unsigned short b : 5;
+  unsigned short c : 6;
+};
+
+struct B {
+  unsigned short a : 5;
+  unsigned short b : 3;
+  unsigned short c : 8;
+};
+
+int main ()
+{
+  /* If short is not at least 16 bits wide, don't test anything.  */
+  if ((unsigned short) 65521 != 65521)
+    exit (0);
+
+  if (sizeof (struct A) != sizeof (struct B))
+    abort ();
+
+  exit (0);
+}