| 176 | struct JitFramePos : public JitVal |
| 177 | { |
| 178 | JitFramePos(int inOffset, JitType inType=jtPointer) : JitVal(inType, inOffset, jposFrame, sFrameReg) { } |
| 179 | JitFramePos(int inOffset, ExprType inType) : JitVal(getJitType(inType), inOffset, jposFrame, sFrameReg) { } |
| 180 | }; |
| 181 |
nothing calls this directly
no test coverage detected