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
gf.c: include const-return methods in --trace-compile
Code that returns a constant value never ends up compiled by LLVM, but
we want to log them since they are inferred / compiled by our own
Compiler.
These can sometimes include methods that speculatively end up 'compiled'
with a non-'compileable' signature, since inference eagerly explores
widened signatures that JIT / codegen normally would not. That's not work
that we can log here since `precompile(...)` will reject the widened
signature, but that's probably fine, since the JIT doesn't know to look
for these widened signatures anyway.
0 commit comments