]> git.sur5r.net Git - cc65/commitdiff
Rename Width to BitWidth.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 29 Aug 2009 19:04:21 +0000 (19:04 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 29 Aug 2009 19:04:21 +0000 (19:04 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4073 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/symentry.h
src/cc65/symtab.c

index d9139a8b7870b7a56c44d02bb5c6eea0a92b26c1..1f91ff4097d293ced9d0b64c344fabc59ee3ccd0 100644 (file)
@@ -135,7 +135,7 @@ struct SymEntry {
         struct {
             unsigned            Offs;     /* Byte offset into struct */
             unsigned            BitOffs;  /* Bit offset into last byte */
-            unsigned            Width;    /* Width in bits */
+            unsigned            BitWidth; /* Width in bits */
         } B;
 
        /* Data for functions */
index c3ca6ba9406c07ce2230d400d38f3f088d400c07..6ab25d37466bc3687bb110d0153980c888c2777d 100644 (file)
@@ -593,10 +593,10 @@ SymEntry* AddBitField (const char* Name, unsigned Offs, unsigned BitOffs, unsign
        Entry = NewSymEntry (Name, SC_BITFIELD);
 
        /* Set the symbol attributes. Bit-fields are always of type unsigned */
-       Entry->Type        = type_uint;
-        Entry->V.B.Offs    = Offs;
-        Entry->V.B.BitOffs = BitOffs;
-        Entry->V.B.Width   = Width;
+       Entry->Type         = type_uint;
+        Entry->V.B.Offs     = Offs;
+        Entry->V.B.BitOffs  = BitOffs;
+        Entry->V.B.BitWidth = Width;
 
        /* Add the entry to the symbol table */
        AddSymEntry (SymTab, Entry);