# HG changeset patch # User jkeil # Date 1031319093 0 # Node ID f4710b873abdd253bcd08b1a6df9b625136681e8 # Parent e3b3b2f280731687f54f276a7bda80fcdd886760 SPARC gcc generates bad code accessing an unaligned and packed structure member (See gcc problem report PR c/7847); mplayer crashes with SIGBUS signal. Added a workaround: copy the unaligned stucture member to a temporary local variable using memcpy, and use that in the code. diff -r e3b3b2f28073 -r f4710b873abd libmpdemux/open.c --- a/libmpdemux/open.c Fri Sep 06 11:28:49 2002 +0000 +++ b/libmpdemux/open.c Fri Sep 06 13:31:33 2002 +0000 @@ -654,8 +654,23 @@ if(d->angle_seek){ int i,skip=0; +#if defined(__GNUC__) && defined(__sparc__) + // workaround for a bug in the sparc version of gcc 2.95.X ... 3.2, + // it generates incorrect code for unaligned access to a packed + // structure member, resulting in an mplayer crash with a SIGBUS + // signal. + // + // See also gcc problem report PR c/7847: + // http://gcc.gnu.org/cgi-bin/gnatsweb.pl?database=gcc&cmd=view+audit-trail&pr=7847 + for(i=0;i<9;i++){ // check if all values zero: + typeof(d->dsi_pack.sml_agli.data[i].address) tmp_addr; + memcpy(&tmp_addr,&d->dsi_pack.sml_agli.data[i].address,sizeof(tmp_addr)); + if((skip=tmp_addr)!=0) break; + } +#else for(i=0;i<9;i++) // check if all values zero: if((skip=d->dsi_pack.sml_agli.data[i].address)!=0) break; +#endif if(skip){ // sml_agli table has valid data (at least one non-zero): d->cur_pack=d->dsi_pack.dsi_gi.nv_pck_lbn+