7 Sep 2010 16:58
funman: r28026 - trunk/apps/codecs/demac/libdemac
<mailer <at> svn.rockbox.org>
2010-09-07 14:58:10 GMT
2010-09-07 14:58:10 GMT
Date: 2010-09-07 16:58:10 +0200 (Tue, 07 Sep 2010) New Revision: 28026 Log Message: workaround weird gcc behaviour it might a bug in the 4 years old gcc version, but __ASSEMBLER__ is not defined when preprocessing .S files with -std=gnu99 Modified: trunk/apps/codecs/demac/libdemac/predictor-cf.S Modified: trunk/apps/codecs/demac/libdemac/predictor-cf.S =================================================================== --- trunk/apps/codecs/demac/libdemac/predictor-cf.S 2010-09-07 14:50:26 UTC (rev 28025) +++ trunk/apps/codecs/demac/libdemac/predictor-cf.S 2010-09-07 14:58:10 UTC (rev 28026) <at> <at> -23,6 +23,12 <at> <at> Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA */ + +/* workaround gcc 3.4.6 -std=gnu99 */ +#ifndef __ASSEMBLER +#define __ASSEMBLER__ +#endif + #include "demac_config.h" /* NOTE: The following need to be kept in sync with parser.h */(Continue reading)
RSS Feed