| 389 | ////////////////////////////////////////////////////////////////////////// |
| 390 | |
| 391 | NodeBlock::NodeBlock(FunctionInfo* parentFunc, unsigned int shift) |
| 392 | { |
| 393 | parentFunction = parentFunc; |
| 394 | stackFrameShift = shift; |
| 395 | |
| 396 | first = TakeLastNode(); |
| 397 | |
| 398 | nodeType = typeNodeBlockOp; |
| 399 | } |
| 400 | NodeBlock::~NodeBlock() |
| 401 | { |
| 402 | } |
nothing calls this directly
no test coverage detected