aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2006-11-23 01:23:42 +0000
committerBen Elliston <bje@gcc.gnu.org>2006-11-23 12:23:42 +1100
commita991f101aec819cdc1166165e47c9de8379a6d10 (patch)
treeea66ee00d1aaf6ce41928f515dfb17aa727dbd45 /gcc
parent617b6ec0628bce2c8f83128fe40129e515be260e (diff)
downloadgcc-a991f101aec819cdc1166165e47c9de8379a6d10.zip
gcc-a991f101aec819cdc1166165e47c9de8379a6d10.tar.gz
gcc-a991f101aec819cdc1166165e47c9de8379a6d10.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/spu/spu_mfcio.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4227e60..70aeb52 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2006-11-23 Ben Elliston <bje@au.ibm.com>
+ * 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 <dvorakz@suse.cz>
diff --git a/gcc/config/spu/spu_mfcio.h b/gcc/config/spu/spu_mfcio.h
index b0436bc..2ca2e06 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;