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
Generally, when we can't determine a type for an expression due to structure_of failing, we're kinda stuck when it comes to typechecking that function, but we can back out and typecheck the other functions.
The text was updated successfully, but these errors were encountered:
We historically have run single-threaded verbose tests because we were
faulting all over the place due to bugs in rustc itself, primarily
around calling conventions and passing values around. Those bugs have
all since been fixed so we should be clear to run multithreaded tests
quietly on CI nowadays!
Closesrust-lang#621
pdietl
pushed a commit
to pdietl/rust
that referenced
this issue
Apr 23, 2020
* Use serde to serialize irep to reduce mem consumption
This change allow us to serialize the irep without having to buffer the
entire json in memory.
I'm not removing the old code yet because this new logic is slower and
still need some prunning.
* Add a BufWriter to speed up serialization.
* Address PR comments
- Add more test coverage.
- Added utility function.
Generally, when we can't determine a type for an expression due to
structure_of
failing, we're kinda stuck when it comes to typechecking that function, but we can back out and typecheck the other functions.The text was updated successfully, but these errors were encountered: