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.
Our LLVM parser does not parse constant strings and defaults to a 0 value.
gets parsed as if written like
This should be easy to fix though.