summaryrefslogtreecommitdiffstats
path: root/src/misc/nm
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-05-04 10:48:46 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-05-04 10:48:46 -0700
commit95571be5036ac760e82ee86f4faf2418a5a23a32 (patch)
treebf03459c90085884eceba6327c698838665780dc /src/misc/nm
parent14f761950d20a38b13ea330baf9e800b64faae90 (diff)
downloadabc-95571be5036ac760e82ee86f4faf2418a5a23a32.tar.gz
abc-95571be5036ac760e82ee86f4faf2418a5a23a32.tar.bz2
abc-95571be5036ac760e82ee86f4faf2418a5a23a32.zip
Changes to the ABC data-structures to allow for larger designs.
Diffstat (limited to 'src/misc/nm')
-rw-r--r--src/misc/nm/nmInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/nm/nmInt.h b/src/misc/nm/nmInt.h
index 19d688f1..ad914850 100644
--- a/src/misc/nm/nmInt.h
+++ b/src/misc/nm/nmInt.h
@@ -46,8 +46,8 @@ ABC_NAMESPACE_HEADER_START
typedef struct Nm_Entry_t_ Nm_Entry_t;
struct Nm_Entry_t_
{
- unsigned Type : 4; // object type
- unsigned ObjId : 28; // object ID
+ unsigned Type; // object type
+ unsigned ObjId; // object ID
Nm_Entry_t * pNextI2N; // the next entry in the ID hash table
Nm_Entry_t * pNextN2I; // the next entry in the name hash table
Nm_Entry_t * pNameSake; // the next entry with the same name