mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
merge from gcc
This commit is contained in:
parent
d40fcd7bc1
commit
35f075b6ea
@ -1,3 +1,8 @@
|
||||
2003-12-18 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* include/fibheap.h (fibnode): Use unsigned long int for
|
||||
bit-fields if __GNUC__ is defined.
|
||||
|
||||
2003-12-04 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* bfdlink.h (bfd_link_info): Change relax_finalizing to
|
||||
|
@ -59,8 +59,13 @@ typedef struct fibnode
|
||||
struct fibnode *right;
|
||||
fibheapkey_t key;
|
||||
void *data;
|
||||
#ifdef __GNUC__
|
||||
unsigned long int degree : 31;
|
||||
unsigned long int mark : 1;
|
||||
#else
|
||||
unsigned int degree : 31;
|
||||
unsigned int mark : 1;
|
||||
#endif
|
||||
} *fibnode_t;
|
||||
|
||||
extern fibheap_t fibheap_new PARAMS ((void));
|
||||
|
Loading…
Reference in New Issue
Block a user