------- Comment #2 from jay dot krell at cornell dot edu 2010-05-28 13:22 ------- I assume it is talking about this, but I'm not certain:
static void unpack_ts_fixed_cst_value_fields (struct bitpack_d *bp, tree expr) { struct fixed_value fv; fv.data.low = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT); fv.data.high = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT); TREE_FIXED_CST (expr) = fv; } This is on x86-darwin. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44312