summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2006-11-23 01:23:42 +0000
committerbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2006-11-23 01:23:42 +0000
commitc720acbb4f7674019613d52e704eaf4463b3d5a1 (patch)
treeea66ee00d1aaf6ce41928f515dfb17aa727dbd45 /gcc/config
parent6e6f595a85eb0a7accaacf4d2f1acaea24900dc5 (diff)
downloadgcc-c720acbb4f7674019613d52e704eaf4463b3d5a1.tar.gz
* config/spu/spu_mfcio.h (struct mfc_list_element): Change width
of size bitfield. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119110 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/spu/spu_mfcio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/spu/spu_mfcio.h b/gcc/config/spu/spu_mfcio.h
index b0436bc600f..2ca2e06c989 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;