]> gcc.gnu.org Git - gcc.git/commitdiff
* gcc.c-torture/execute/bitfld-2.c: New test.
authorJakub Jelinek <jakub@redhat.com>
Sat, 2 Feb 2002 09:28:25 +0000 (10:28 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 2 Feb 2002 09:28:25 +0000 (10:28 +0100)
From-SVN: r49438

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

index 13dd94e81557b9522909908994d01307efec100a..5d8541b140fef97705b9c1fad8863ac24c1277d7 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);
+}
This page took 0.07967 seconds and 5 git commands to generate.