diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-04-22 19:34:01 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-04-22 19:34:01 +0000 |
| commit | b5a507bbdc1e10c9760ff4adbfc4d590c5f22d27 (patch) | |
| tree | 4fa5df1ab83684a483b906724a32e2a887daa56a /firmware/export | |
| parent | 9418e92eeaffddeedc66b7f7da514679f6f68e68 (diff) | |
| download | rockbox-b5a507bbdc1e10c9760ff4adbfc4d590c5f22d27.zip rockbox-b5a507bbdc1e10c9760ff4adbfc4d590c5f22d27.tar.gz rockbox-b5a507bbdc1e10c9760ff4adbfc4d590c5f22d27.tar.bz2 rockbox-b5a507bbdc1e10c9760ff4adbfc4d590c5f22d27.tar.xz | |
Small fix for compilation under GCC4. Note: It still doesn't even fully compile for SH1, and coldfire builds are reported to crash, so ymmv.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6331 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h index 876daa6..1876bc3 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h @@ -60,7 +60,7 @@ void cpu_boost(bool on_off); asm volatile ("nop") /* gcc 3.4 changed the format of the constraints */ -#if (__GNUC__ >= 3) && (__GNUC_MINOR__ > 3) +#if (__GNUC__ >= 3) && (__GNUC_MINOR__ > 3) || (__GNUC__ >= 4) #define I_CONSTRAINT "I08" #else #define I_CONSTRAINT "I" |