Quang Trung Ta
Quang Trung Ta
I love this Alembic theme for its simple, elegant, and easy-to-customize design. It also has several setting modes to fit with different screen sizes. The blog and its search feature...
I'm using Spacemacs. Perhaps, it is caused by Spacemacs? I will try to debug further...
> I had similar problem with code-cells. After tinkering with some things I came up with patch I forgot to send that seems to have fixed the issue. > >...
@lhpfvs: I tested on both [Emacs Mac Port](https://github.com/railwaycat/homebrew-emacsmacport) and [Emacs for Mac OS X](https://emacsformacosx.com/), the problem still occurs on full-screen mode (F11)\ Notice that there is a blank line on...
Thank you for the reply. FYI, for the invalid memory reference error (SIGSEGV), I just added an assertion in the unit test function `test_globals` (line 952) ```rust assert_eq!(global.get_parent(), module); ```...
This is exactly the problem. If I I comment the code that check for empty EE before dropping the module, then all the unit tests can pass. ```rust // Module...
@ytoml: Yes, I also encountered a similar issue when implementing the `get_parent` for `FunctionValue` on a customized LLVM. So the current problem is that the lifetime of `FunctionValue` and `GlobalValue`...
@TheDan64 @ytoml: I think `BasicBlock` has nothing to do with `Module`, since `BasicBlock::get_parent()` returns the parent `FunctionValue` I notice the way `Module` and `FunctionValue` are defined are quite different: the...
I don't use Ewasm but just want to compile Solidity to the LLVM IR format that is closest to EVM bytecode (e.g., calling built-in functions of EVM directly). I'm implementing...
Yes, it will be great if Solang can continue to support EVM target. It will definitely be useful for many use cases, like the one mentioned in this issue https://github.com/hyperledger/solang/issues/1005:...