MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / is_i64_const

Method is_i64_const

winch/codegen/src/stack.rs:277–282  ·  view source on GitHub ↗

Check whether the value is an i64 constant.

(&self)

Source from the content-addressed store, hash-verified

275
276 /// Check whether the value is an i64 constant.
277 pub fn is_i64_const(&self) -> bool {
278 match *self {
279 Self::I64(_) => true,
280 _ => false,
281 }
282 }
283
284 /// Check whether the value is an f32 constant.
285 pub fn is_f32_const(&self) -> bool {

Callers 3

pop_i64_constMethod · 0.80
i64_shiftMethod · 0.80
pop_i64_constMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected