arthur
Results
2
comments of
arthur
@ayeteng I got the same issue with yours . Compiling the `.sol` file with `solc` in command line is okay, but went wrong if using solc-py . I don't think...
@Ananfa __x86_64__部分的修改,是不是少了对 %rcx %rdx对应的操作,应该是这样吧: ```assembly leaq 8(%rsp), %rax // rsp + 8 -> rax movq %rax, 104(%rdi) movq %rbx, 96(%rdi) movq %rcx, 88(%rdi) # 缺少了 %rcx的拷贝? movq %rdx, 80(%rdi) #...