Skip to content

[LLVM Parser] Constant strings are not parsed correctly #946

@ThomasHaas

Description

@ThomasHaas

Our LLVM parser does not parse constant strings and defaults to a 0 value.

char charArr[5] = {1, 2, 3, 4, 5};  // Will result in a string constant in LLVM

gets parsed as if written like

char charArr[5] = {0, 0, 0, 0, 0}; 

This should be easy to fix though.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions