MrAzteca
MrAzteca
I understand. I was hoping for a setting or similar which tweaked the driver, but I guess there isn't (not with closed drivers at least). I just tried installing the...
No, that one can't be installed on this version of ubuntu. I'm using the open source one (which comes preinstalled on ubuntu). What I mean by closed source is the...
Hello, I think there's been a misunderstanding in the issue. The `RangeCheck` is a builtin. All builtins are parsed before `parse_result` is invoked, therefore making `parse_result` parse `RangeCheck` makes no...
Hello, is the panic location (`libfuncs.rs:304:51`) still accurate? The only reason why it would crash there with that error message, more specifically `the len is 0`, is that we've received...
Hello, I've compiled the example contract and analized the Sierra. I'll assume you're a bit familiar with the structure of the Sierra programs. Here's what I've found: ``` type mock_contract::some_component::SomeComponent::Event...
Hello, I think we've managed to isolate the issue and implement a fix for this issue. Could you try if the fix's branch (`fix-zero-variant-enum-matches`) fixes this bug? Thank you.
Hello, I've just tried to run the failing transaction on Juno using the latest native commit (with the fix). It seems the program is not panicking anymore. This is the...
Hello, With `llvm.alloca` I'm referring to the `alloca` instructions in the `llvm` dialect. In MLIR they're written as `llvm.alloca`, but we have them available as `llvm::alloca` in Rust. The `llvm.alloca`...
`helper.init_block()` is the block at which the operation is appended. We want to append the init block (`helper.init_block()`) instead of `entry` (the default block for each libfunc), or any other...
Ideally yes, but outside the libfuncs (and a few helper functions I think) you won't have the `helper`. If you find something outside libfuncs' implementations just letting us know is...