diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-23 01:23:42 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-23 01:23:42 +0000 |
commit | c720acbb4f7674019613d52e704eaf4463b3d5a1 (patch) | |
tree | ea66ee00d1aaf6ce41928f515dfb17aa727dbd45 /gcc/config | |
parent | 6e6f595a85eb0a7accaacf4d2f1acaea24900dc5 (diff) | |
download | gcc-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.h | 4 |
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; |