You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a project that is using LLVM and I am trying to write my own implementation of the C Standard library's strlen. I got what I though would be a valid declaration:
However, when I tried to do something like var length = _builder.BuildCall2(_module.GetNamedFunction("strlen").TypeOf, _module.GetNamedFunction("strlen"), [/*valueRef here*/]);
I always got an AccessViolationException.
At first, I thought it was an issue with my code, but after 2-3 hours of debugging and conferring with peers, no answers could be found. Please help
The text was updated successfully, but these errors were encountered:
I have a project that is using LLVM and I am trying to write my own implementation of the C Standard library's strlen. I got what I though would be a valid declaration:
However, when I tried to do something like
var length = _builder.BuildCall2(_module.GetNamedFunction("strlen").TypeOf, _module.GetNamedFunction("strlen"), [/*valueRef here*/]);
I always got an AccessViolationException.
At first, I thought it was an issue with my code, but after 2-3 hours of debugging and conferring with peers, no answers could be found. Please help
The text was updated successfully, but these errors were encountered: