-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Julia crashes with Illegal instruction
#43668
Comments
A little shorter: foo() = whatever
begin
eval(Meta.parse("foo(x) = nothing"))
for _ in 0 end
foo(nothing)
end Interesting how |
Unreachable and illegal instruction from this code as well. I also put it in a file: function run()
N = 800
for k = 1:10
@time begin
count=0
iter = IterateAPI.start_iterate(dict)
while !IterateAPI.at_end(iter)
count += 1
IterateAPI.next!(iter)
end
IterateAPI.free_iterator!(iter)
count != N && @info "ERROR"
end
end
end
run() And still get:
Remove
Comment the I haven't dug into it to see if this is the same underlying issue (likely), or something different? |
Using https://github.com/maleadt/creduce_julia I got for a = 1 : 10
@time begin
b && @info ""
end
end |
Wow. And lol! |
This was added somewhere between 1.7.0-rc1 and 1.7.0-rc2 |
The code below crashes with
Illegal instruction
on Julia 1.6.2 and 1.7.0.Stacktrace:
The text was updated successfully, but these errors were encountered: