diff options
author | DJ Delorie <dj@redhat.com> | 2003-12-19 04:04:44 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2003-12-19 04:04:44 +0000 |
commit | 35f075b6eafd3a2d7bc241589102ee5ecb176de3 (patch) | |
tree | ac4d95be06f2faa133804afdd5fb6687708ffca2 /include/fibheap.h | |
parent | d40fcd7bc1cc1ae5069f87d82b63e4e5253c5dd9 (diff) | |
download | gdb-35f075b6eafd3a2d7bc241589102ee5ecb176de3.zip gdb-35f075b6eafd3a2d7bc241589102ee5ecb176de3.tar.gz gdb-35f075b6eafd3a2d7bc241589102ee5ecb176de3.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/fibheap.h')
-rw-r--r-- | include/fibheap.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/fibheap.h b/include/fibheap.h index fc37f9e..addef19 100644 --- a/include/fibheap.h +++ b/include/fibheap.h @@ -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)); |