MCPcopy Create free account
hub / github.com/WheretIB/nullc / GenCodeCmdBitNot

Function GenCodeCmdBitNot

NULLC/CodeGen_X86.cpp:3026–3033  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3024}
3025
3026void GenCodeCmdBitNot(VMCmd cmd)
3027{
3028 (void)cmd;
3029 EMIT_COMMENT("BNOT int");
3030 EMIT_OP_REG(o_pop, rEAX);
3031 EMIT_OP_REG(o_not, rEAX);
3032 EMIT_OP_REG(o_push, rEAX);
3033}
3034
3035void GenCodeCmdLogNot(VMCmd cmd)
3036{

Callers

nothing calls this directly

Calls 2

EMIT_COMMENTFunction · 0.85
EMIT_OP_REGFunction · 0.85

Tested by

no test coverage detected