Differences From Artifact [41c59bb866]:
- File ffcall/avcall/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using] [more...]
- File ffcall/callback/trampoline_r/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
- File ffcall/callback/vacall_r/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
- File ffcall/trampoline/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
- File ffcall/vacall/asmsparc.h — part of check-in [c83183fa27] at 2013-05-11 07:09:05 on branch trunk — Updated ffcall src. Removed canvas-draw (can use direct from site now?) (user: matt, size: 836) [annotate] [blame] [check-ins using]
To Artifact [21e13ce963]:
- File ffcall/avcall/asmsparc.h — part of check-in [24d3bc4776] at 2011-01-30 17:11:43 on branch trunk — Adding ffcall (and built files) (user: matt, size: 903) [annotate] [blame] [check-ins using] [more...]
- File ffcall/callback/trampoline_r/asmsparc.h — part of check-in [24d3bc4776] at 2011-01-30 17:11:43 on branch trunk — Adding ffcall (and built files) (user: matt, size: 903) [annotate] [blame] [check-ins using]
- File ffcall/callback/vacall_r/asmsparc.h — part of check-in [24d3bc4776] at 2011-01-30 17:11:43 on branch trunk — Adding ffcall (and built files) (user: matt, size: 903) [annotate] [blame] [check-ins using]
- File ffcall/trampoline/asmsparc.h — part of check-in [24d3bc4776] at 2011-01-30 17:11:43 on branch trunk — Adding ffcall (and built files) (user: matt, size: 903) [annotate] [blame] [check-ins using]
- File ffcall/vacall/asmsparc.h — part of check-in [24d3bc4776] at 2011-01-30 17:11:43 on branch trunk — Adding ffcall (and built files) (user: matt, size: 903) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | // Assembly language support for sparc CPU. // Bruno Haible 29.5.1999 #ifdef ASM_UNDERSCORE // SunOS4, Linux/a.out #define C(entrypoint) _##entrypoint #else // Solaris, Linux/ELF #define C(entrypoint) entrypoint #endif // When assembly language code is compiled into a shared library, ELF linkers // need to know which symbols are functions. | > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | // Assembly language support for sparc CPU. // Bruno Haible 29.5.1999 #ifdef ASM_UNDERSCORE // SunOS4, Linux/a.out #ifdef __STDC__ #define C(entrypoint) _##entrypoint #else #define C(entrypoint) _/**/entrypoint #endif #else // Solaris, Linux/ELF #define C(entrypoint) entrypoint #endif // When assembly language code is compiled into a shared library, ELF linkers // need to know which symbols are functions. |
︙ | ︙ |