mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Make COROUTINE_XMM_REGISTERS compile-time only too
This commit is contained in:
parent
b1b385465e
commit
e29a85a96c
1 changed files with 4 additions and 2 deletions
|
@ -16,8 +16,10 @@ extern "C" {
|
||||||
|
|
||||||
#define COROUTINE __declspec(noreturn) void
|
#define COROUTINE __declspec(noreturn) void
|
||||||
|
|
||||||
enum {COROUTINE_REGISTERS = 8};
|
enum {
|
||||||
const size_t COROUTINE_XMM_REGISTERS = 1+10*2;
|
COROUTINE_REGISTERS = 8,
|
||||||
|
COROUTINE_XMM_REGISTERS = 1+10*2,
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue