Commit b3ddc3ab by Richard Kenner Committed by Richard Kenner

* tree.h (struct tree_type): Make PRECISION 9 bits and MODE 7.

From-SVN: r33148
parent af1747ef
Fri Apr 14 07:40:32 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Fri Apr 14 07:40:32 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* tree.h (struct tree_type): Make PRECISION 9 bits and MODE 7.
* dbxout.c (dbxout_type, case INTEGER_TYPE): Don't call * dbxout.c (dbxout_type, case INTEGER_TYPE): Don't call
print_int_cst_octal with something that's not an INTEGER_CST. print_int_cst_octal with something that's not an INTEGER_CST.
......
...@@ -906,13 +906,13 @@ struct tree_type ...@@ -906,13 +906,13 @@ struct tree_type
union tree_node *size; union tree_node *size;
union tree_node *size_unit; union tree_node *size_unit;
union tree_node *attributes; union tree_node *attributes;
unsigned uid; unsigned int uid;
unsigned char precision; unsigned int precision : 9;
#ifdef ONLY_INT_FIELDS #ifdef ONLY_INT_FIELDS
unsigned int mode : 8; unsigned int mode : 7;
#else #else
enum machine_mode mode : 8; enum machine_mode mode : 7;
#endif #endif
unsigned string_flag : 1; unsigned string_flag : 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment