Rename Width to BitWidth.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4073 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
bd872a6324
commit
7ced0a2ceb
2 changed files with 5 additions and 5 deletions
|
@ -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 */
|
||||
|
|
|
@ -596,7 +596,7 @@ SymEntry* AddBitField (const char* Name, unsigned Offs, unsigned BitOffs, unsign
|
|||
Entry->Type = type_uint;
|
||||
Entry->V.B.Offs = Offs;
|
||||
Entry->V.B.BitOffs = BitOffs;
|
||||
Entry->V.B.Width = Width;
|
||||
Entry->V.B.BitWidth = Width;
|
||||
|
||||
/* Add the entry to the symbol table */
|
||||
AddSymEntry (SymTab, Entry);
|
||||
|
|
Loading…
Add table
Reference in a new issue