alexcrichton transferred Issue #863:
In https://github.com/CraneStation/cranelift/pull/862 we added commentary to specify what "pristine" and "filled" meant. Nicolas pointed out that the commentary makes it clear that it could really just be some
EbbState
enum, for example:enum EbbState { UnChanged, Changed, ChangedAndTerminated, }This would help us make better sense of the public interface, where
is_pristine()
andis_filled()
functions are part of theFunctionBuilder
public API (used bycranelift-wasm
), but it isn't clear what those words refer to, so you have to go digging around.
Last updated: Nov 22 2024 at 17:03 UTC