-
-
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
Incorrect argument types displayed for inlined method in stacktrace #52709
Labels
bug
Indicates an unexpected problem or unintended behavior
error messages
Better, more actionable error messages
Comments
jishnub
added
error messages
Better, more actionable error messages
bug
Indicates an unexpected problem or unintended behavior
labels
Jan 3, 2024
So this is all caused by code I wrote that was there to lookup inlined method signatures, but the main piece of that was removed because it had detrimental effects, and the fallbacks seem to be more trouble than they're worth. I'll make a PR to drop it altogether until it can be revisited. |
aviatesk
pushed a commit
that referenced
this issue
Jan 14, 2024
The fallback code that was written for #41099 is causing unintended issues with some inlined stack frames (one previous #51405, new #52709), since the main piece, linetable storage and lookup, was removed in #50546. Probably better to strip it all back to how it was previously, until it can all be revisited more fully. Should be backported to 1.10.
aviatesk
pushed a commit
that referenced
this issue
Jan 14, 2024
The fallback code that was written for #41099 is causing unintended issues with some inlined stack frames (one previous #51405, new #52709), since the main piece, linetable storage and lookup, was removed in #50546. Probably better to strip it all back to how it was previously, until it can all be revisited more fully. Should be backported to 1.10.
Drvi
pushed a commit
to RelationalAI/julia
that referenced
this issue
Jun 7, 2024
The fallback code that was written for JuliaLang#41099 is causing unintended issues with some inlined stack frames (one previous JuliaLang#51405, new JuliaLang#52709), since the main piece, linetable storage and lookup, was removed in JuliaLang#50546. Probably better to strip it all back to how it was previously, until it can all be revisited more fully. Should be backported to 1.10.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Indicates an unexpected problem or unintended behavior
error messages
Better, more actionable error messages
Here, the line
[3]
is wrong, as the method that is called istriu!(::Hankel{Int64, UnitRange{Int64}, Tuple{Int64, Int64}}, k::Int)
and nottriu!(::Matrix{Float64}, k::Int)
. Note that line[1]
containsHankel
again instead ofMatrix
, which shouldn't be the case if there are noHankel
arguments totriu!
.Cthulhu reports the correct types:
This is on
The issue is also present on
v"1.11.0-DEV.1182"
. This is using v0.8.2 ofToeplitzMatrices
.The text was updated successfully, but these errors were encountered: