diff options
Diffstat (limited to 'src/m4a.c')
-rw-r--r-- | src/m4a.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -903,7 +903,9 @@ void CgbModVol(struct CgbChannel *chan) // Force chan->rightVolume and chan->leftVolume to be read from memory again, // even though there is no reason to do so. // The command line option "-fno-gcse" achieves the same result as this. - asm("" : : : "memory"); + #ifndef NONMATCHING + asm("" : : : "memory"); + #endif chan->eg = (u32)(chan->rightVolume + chan->leftVolume) >> 4; if (chan->eg > 15) |