1
0
Fork 0
forked from len0rd/rockbox

arm: Use -masm-syntax-unified when compiling with gcc8 or newer

Annoyingly, this makes all of the '.S' files we compile get treated as
divided syntax, so we need to make the syntax in them explicit.

Change-Id: I56a3916b7b24c84a1214a5d6bc4ed4d651f002cf
This commit is contained in:
Solomon Peachy 2023-05-24 09:37:20 -04:00
parent 0a89d1d4df
commit 8c86fb6da0
17 changed files with 43 additions and 3 deletions

View file

@ -29,6 +29,9 @@
****************************************************************************/
#include "config.h"
.syntax unified
/* On targets with codec iram, a header file will be generated after an initial
link of the APE codec, stating the amount of IRAM remaining for use by the
reciprocal lookup table. */

View file

@ -26,6 +26,8 @@
* void hybrid_filter(fltst *fs, int *in)
*/
.syntax unified
#ifdef USE_IRAM
.section .icode, "ax", %progbits
#else