diff options
author | Al Sutton <al@funkyandroid.com> | 2012-02-22 17:49:13 +0000 |
---|---|---|
committer | Al Sutton <al@funkyandroid.com> | 2012-02-22 17:49:13 +0000 |
commit | 7c84162756a132d3e46af0dac564508b01baddd1 (patch) | |
tree | 9f098de371ff504f266afab74743b79aa6333633 /target-arm | |
parent | 349beb3f9b2a10a9a5cc001c115c2f742a833d6f (diff) | |
download | external_qemu-7c84162756a132d3e46af0dac564508b01baddd1.zip external_qemu-7c84162756a132d3e46af0dac564508b01baddd1.tar.gz external_qemu-7c84162756a132d3e46af0dac564508b01baddd1.tar.bz2 |
Xcode 4.3 compatibility checkin
The Xcode 4.3 compiler doesn't have support for global register variables so
this patch ensures that the register keyword is not incuded for that compiler.
Signed-off-by: Al Sutton <al@funkyandroid.com>
Diffstat (limited to 'target-arm')
-rw-r--r-- | target-arm/exec.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target-arm/exec.h b/target-arm/exec.h index 07bfd57..83571e6 100644 --- a/target-arm/exec.h +++ b/target-arm/exec.h @@ -19,7 +19,11 @@ #include "config.h" #include "dyngen-exec.h" -register struct CPUARMState *env asm(AREG0); +/* Xcode 4.3 doesn't support global register variables */ +#if !defined(__APPLE_CC__) || __APPLE_CC__ < 5621 + register +#endif +struct CPUARMState *env asm(AREG0); #include "cpu.h" #include "exec-all.h" |