ObjFW  Check-in [3be69edbd5]

Overview
Comment:Only compile invoke-x86_64.m for Apple runtime

This file will be shared with x86_64/ELF and x86_64/Win64 later, but for
now, there is no .S file for that.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3be69edbd5a909d6c682e7bb898d6e98313a7cc1236e40a3ed76aaed9b713db1
User & Date: js on 2017-09-12 20:49:46
Other Links: manifest | tags
Context
2017-09-12
23:49
invoke-x86_64.m: Minor refactor check-in: 8417c40405 user: js tags: trunk
20:49
Only compile invoke-x86_64.m for Apple runtime check-in: 3be69edbd5 user: js tags: trunk
2017-09-11
20:32
invoke-x86_64.m: Support for long double check-in: d0878b2eae user: js tags: trunk
Changes

Modified src/invocation/invoke.m from [783e87786f] to [7c6eaecd2d].

15
16
17
18
19
20
21

22

23
24
25
26
 */

#include "config.h"

#include "platform.h"

#ifdef OF_X86_64

# include "invoke-x86_64.m"

#else
/* To not have an empty translation unit otherwise */
int of_invocation_cannot_invoke;
#endif







>
|
>




15
16
17
18
19
20
21
22
23
24
25
26
27
28
 */

#include "config.h"

#include "platform.h"

#ifdef OF_X86_64
# ifdef OF_APPLE_RUNTIME
#  include "invoke-x86_64.m"
# endif
#else
/* To not have an empty translation unit otherwise */
int of_invocation_cannot_invoke;
#endif