]> gcc.gnu.org Git - gcc.git/commitdiff
* stor-layout.c (place_field): Change rli->size to rli->offset.
authorRichard Henderson <rth@cygnus.com>
Tue, 23 May 2000 06:10:12 +0000 (23:10 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 23 May 2000 06:10:12 +0000 (23:10 -0700)
From-SVN: r34100

gcc/ChangeLog
gcc/stor-layout.c

index f3af63bdfa73b42488f11f9c4a1c02072fd924fe..7d3407133a7b193fe9f5624dcbda262652d7cbf0 100644 (file)
@@ -1,3 +1,7 @@
+2000-05-22  Richard Henderson  <rth@cygnus.com>
+
+       * stor-layout.c (place_field): Change rli->size to rli->offset.
+
 2000-05-22  Richard Henderson  <rth@cygnus.com>
 
        * function.c (thread_prologue_and_epilogue_insns): Make sure 
index ad7768f1487684199fe19d54c1a1e849ed2d3b7e..26aa48b28cad1ae805c6119bf3aaeb8f701f0999 100644 (file)
@@ -801,7 +801,7 @@ place_field (rli, field)
       && ! DECL_PACKED (field)
       && ! integer_zerop (DECL_SIZE (field))
       && host_integerp (DECL_SIZE (field), 1)
-      && host_integerp (rli->size, 1)
+      && host_integerp (rli->offset, 1)
       && host_integerp (TYPE_SIZE (type), 1))
     {
       unsigned int type_align = TYPE_ALIGN (type);
This page took 0.083945 seconds and 5 git commands to generate.