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
{{ message }}
This repository was archived by the owner on Jun 26, 2020. It is now read-only.
As a part of #890 I added support for running CLIF directly as a filetest or through clif-util run; the current idea is that functions would return a boolean that indicates whether the function ran successfully or not. This works with the other boolean types, but a test like the following results in a segmentation fault:
test run
function %test_b64() -> b64 {
ebb0:
v0 = bconst.b64 true
return v0
}
; run
I am running a Linux kernel 5.1.18 on Fedora 30 and would expect the system_v calling convention to be the default here. I may need some help figuring out why b64 does not work here.
As a part of #890 I added support for running CLIF directly as a filetest or through
clif-util run; the current idea is that functions would return a boolean that indicates whether the function ran successfully or not. This works with the other boolean types, but a test like the following results in a segmentation fault:I am running a Linux kernel 5.1.18 on Fedora 30 and would expect the
system_vcalling convention to be the default here. I may need some help figuring out whyb64does not work here.