1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Split assertions to check which one fails.

This commit is contained in:
Samuel Williams 2019-07-19 15:53:47 +12:00
parent cf93f98a60
commit dd0e33f083
No known key found for this signature in database
GPG key ID: A0765423A44728FB

View file

@ -64,7 +64,9 @@ static inline void coroutine_initialize(
size_t size,
void *base
) {
assert(start && stack && size >= 1024);
assert(start);
assert(stack);
assert(size >= 1024);
coroutine_initialize_main(context, stack, size, base);