| 98 | |
| 99 | ControlFlowGraphs::FunctionGraphID functionReturnLabel() const { yulAssert(isFunctionReturnLabel()); return m_payload; } |
| 100 | CallSites::CallSiteID functionCallReturnLabel() const { yulAssert(isFunctionCallReturnLabel()); return m_payload; } |
| 101 | SSACFG::ValueId valueID() const { yulAssert(isValueID()); return {m_payload, m_valueIdKind}; } |
| 102 | |
| 103 | static constexpr StackSlot makeJunk() { return {0, Kind::Junk}; } |
no outgoing calls
no test coverage detected