mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
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>
|
2004-11-29 Tomer Levi <Tomer.Levi@nsc.com>
|
||||||
|
|
||||||
* opcode/crx.h (enum operand_type): Rename rbase_cst4 to rbase_dispu4.
|
* opcode/crx.h (enum operand_type): Rename rbase_cst4 to rbase_dispu4.
|
||||||
|
@ -59,7 +59,7 @@ typedef struct fibnode
|
|||||||
struct fibnode *right;
|
struct fibnode *right;
|
||||||
fibheapkey_t key;
|
fibheapkey_t key;
|
||||||
void *data;
|
void *data;
|
||||||
#ifdef __GNUC__
|
#if defined (__GNUC__) && (!defined (SIZEOF_INT) || SIZEOF_INT < 4)
|
||||||
__extension__ unsigned long int degree : 31;
|
__extension__ unsigned long int degree : 31;
|
||||||
__extension__ unsigned long int mark : 1;
|
__extension__ unsigned long int mark : 1;
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user