Skip to content

Reduce number of variables for arguments in functions #15

@tomsik68

Description

@tomsik68

Currently, each argument for function gets 2 stack-allocated variables. For example:

int main(int argc, char** argv) {
    int var0;
    char** var1;

    var0 = argc;
    var1 = argv;
}

And the variables of the arguments themselves are not used anymore. We could get rid of variables like var0 and var1.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions