summaryrefslogtreecommitdiff
path: root/coroutine/universal/Context.S
blob: 11c80a792767a5ee385199388d41a0fa1146da4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0
#elif defined __x86_64__
# include "coroutine/amd64/Context.S"
#elif defined __i386__
# include "coroutine/x86/Context.S"
#elif defined __ppc__
# include "coroutine/ppc/Context.S"
#elif defined __ppc64__ && defined(WORDS_BIGENDIAN)
# include "coroutine/ppc64/Context.S"
#elif defined __ppc64__ && !defined(WORDS_BIGENDIAN)
# include "coroutine/ppc64le/Context.S"
#elif defined __arm64__
# include "coroutine/arm64/Context.S"
#else
# error "Unsupported CPU"
#endif