From: Ben Elliston Date: Thu, 23 Nov 2006 01:23:42 +0000 (+0000) Subject: spu_mfcio.h (struct mfc_list_element): Change width of size bitfield. X-Git-Tag: releases/gcc-4.3.0~8325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a991f101aec819cdc1166165e47c9de8379a6d10;p=thirdparty%2Fgcc.git spu_mfcio.h (struct mfc_list_element): Change width of size bitfield. * config/spu/spu_mfcio.h (struct mfc_list_element): Change width of size bitfield. From-SVN: r119110 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4227e60c9a6f..70aeb52d957f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2006-11-23 Ben Elliston + * config/spu/spu_mfcio.h (struct mfc_list_element): Change width + of size bitfield. + * config/spu/spu-elf.h (LIB_SPEC): Do not link with -lc_p. 2006-11-23 Zdenek Dvorak diff --git a/gcc/config/spu/spu_mfcio.h b/gcc/config/spu/spu_mfcio.h index b0436bc600f6..2ca2e06c9898 100644 --- a/gcc/config/spu/spu_mfcio.h +++ b/gcc/config/spu/spu_mfcio.h @@ -37,8 +37,8 @@ __extension__ #endif typedef struct mfc_list_element { uint64_t notify : 1; /** Stall-and-notify bit */ - uint64_t reserved : 15; - uint64_t size : 16; /** Transfer size */ + uint64_t reserved : 16; + uint64_t size : 15; /** Transfer size */ uint64_t eal : 32; /** Lower word of effective address */ } mfc_list_element_t;