merge from gcc
This commit is contained in:
parent
aee05403d1
commit
c546950745
|
@ -1,3 +1,8 @@
|
|||
2004-12-11 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* fibheap.h (struct fibnode): Only use unsigned long bitfields
|
||||
when __GNUC__ is defined and ints are less than 32-bits wide.
|
||||
|
||||
2004-11-29 Tomer Levi <Tomer.Levi@nsc.com>
|
||||
|
||||
* opcode/crx.h (enum operand_type): Rename rbase_cst4 to rbase_dispu4.
|
||||
|
|
|
@ -59,7 +59,7 @@ typedef struct fibnode
|
|||
struct fibnode *right;
|
||||
fibheapkey_t key;
|
||||
void *data;
|
||||
#ifdef __GNUC__
|
||||
#if defined (__GNUC__) && (!defined (SIZEOF_INT) || SIZEOF_INT < 4)
|
||||
__extension__ unsigned long int degree : 31;
|
||||
__extension__ unsigned long int mark : 1;
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue