diff options
author | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-20 10:17:19 +0000 |
---|---|---|
committer | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-20 10:17:19 +0000 |
commit | cdb8f3f996fefc829d663916d4ff1cd4722ab790 (patch) | |
tree | 3f57af222503098e140ee83980460ac5dae6b980 /coroutine/x86/Context.h | |
parent | ae3c8c20850cc03ad0aaae803fd39d9dceeb78a6 (diff) |
* expand tabs.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'coroutine/x86/Context.h')
-rw-r--r-- | coroutine/x86/Context.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coroutine/x86/Context.h b/coroutine/x86/Context.h index 82bb6dd6c3..54b8bdf40a 100644 --- a/coroutine/x86/Context.h +++ b/coroutine/x86/Context.h @@ -26,10 +26,10 @@ typedef struct typedef COROUTINE(* coroutine_start)(coroutine_context *from, coroutine_context *self) __attribute__((fastcall)); static inline void coroutine_initialize( - coroutine_context *context, - coroutine_start start, - void *stack_pointer, - size_t stack_size + coroutine_context *context, + coroutine_start start, + void *stack_pointer, + size_t stack_size ) { /* Force 16-byte alignment */ context->stack_pointer = (void**)((uintptr_t)stack_pointer & ~0xF); |