view paper/src/twice.c @ 0:38b037c42c34

first commit
author ikkun
date Mon, 17 Apr 2017 20:05:26 +0900
parents
children
line wrap: on
line source

// Twice
__code twice(struct Context* context, struct LoopCounter* loopCounter, int index, int alignment, int* array) {
    int i = loopCounter->i;

    if (i < alignment) {
        array[i+index*alignment] = array[i+index*alignment]*2;
        loopCounter->i++;

        goto meta(context, Twice);
    }

    loopCounter->i = 0;

    stack_pop(context->code_stack, &context->next);
    goto meta(context, context->next);
}