diff options
author | John van Groningen | 2006-06-01 14:13:21 +0000 |
---|---|---|
committer | John van Groningen | 2006-06-01 14:13:21 +0000 |
commit | 1c73d5c6f588b3fc662a8e83b425f8821f31b87e (patch) | |
tree | 42bf5ce51841099424faaf11ec8bbb73e89389e4 /cgcode.c | |
parent | fix ccall with a real as normal argument and an integer as state argument (diff) |
move test for NO_STRING_ADDRESS_IN_DESCRIPTOR after include of cgport.h
Diffstat (limited to 'cgcode.c')
-rw-r--r-- | cgcode.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -10,9 +10,6 @@ # include <stdint.h> #endif -#if defined (G_POWER) || defined (I486) || defined (sparc) -# define NO_STRING_ADDRESS_IN_DESCRIPTOR -#endif #undef NO_FUNCTION_NAMES #undef NO_CONSTRUCTOR_NAMES @@ -24,6 +21,10 @@ #include "cgport.h" +#if defined (G_POWER) || defined (I486) || defined (sparc) +# define NO_STRING_ADDRESS_IN_DESCRIPTOR +#endif + #if defined (G_POWER) || defined (I486) # define PROFILE # if defined (G_POWER) |