Skip to content

return で関数を呼び出している時、cfuncsに入らない #28

@maxfie1d

Description

@maxfie1d
int phase_1(int a)
{
    // ここで `a` の cfuncs にphase_2が入らない
    // int x = phase_2(a); とクッションを挟むと入る
    return phase_2(a);
}

int main(void)
{
    int a = 3;
    int x = phase_1(a);
    return x;
}

cfuncs.c でテストできる。

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions