diff options
author | John van Groningen | 2003-10-03 14:14:40 +0000 |
---|---|---|
committer | John van Groningen | 2003-10-03 14:14:40 +0000 |
commit | 50bb33e83b394196fe428cb191a6dbbc0db91a6c (patch) | |
tree | 43ee42c41fdc448deb68c4e1150e6b5abd8169f0 | |
parent | define function w_as_new_data_module if FUNCTION_LEVEL_LINKING macro is defined (diff) |
move #define FUNCTION_LEVEL_LINKING from cgcode.h to cgport.h
-rw-r--r-- | cgcode.h | 4 | ||||
-rw-r--r-- | cgport.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,8 +1,4 @@ -#if defined (G_POWER) || defined (_WINDOWS_) || defined (LINUX_ELF) -# define FUNCTION_LEVEL_LINKING -#endif - #define g_fhighlow(gh,gl,gf) \ (gh)=g_instruction_2 (GFHIGH,(gf),NULL); \ (gl)=g_instruction_2 (GFLOW,(gf),(gh)); \ @@ -20,6 +20,10 @@ #define ALIGN_C_CALLS #endif +#if defined (G_POWER) || defined (_WINDOWS_) || defined (LINUX_ELF) || defined (sparc) +# define FUNCTION_LEVEL_LINKING +#endif + #ifdef THINK_C # define ANSI_C # define WORD int |