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
A recent bug turned out to be due to calls to build_result being executed with the builder being in the right place. A fix for this was to explicitly call b.position_at_end(self.bb); at the top of the function. This task is to investigate the different code paths where build_result is called to determine if there are either:
related logical bugs that the wasm test suite is not picking up
a cleaner refactor that doesn't require repositioning the builder
The text was updated successfully, but these errors were encountered:
A recent bug turned out to be due to calls to
build_result
being executed with the builder being in the right place. A fix for this was to explicitly callb.position_at_end(self.bb);
at the top of the function. This task is to investigate the different code paths wherebuild_result
is called to determine if there are either:The text was updated successfully, but these errors were encountered: