rubinius/rubinius

View on GitHub
machine/interpreter/push_has_block.cpp

Summary

Maintainability
Test Coverage
#include "instructions/push_has_block.hpp"

namespace rubinius {
  namespace interpreter {
    intptr_t push_has_block(STATE, CallFrame* call_frame, intptr_t const opcodes[]) {
      instructions::push_has_block(call_frame);

      call_frame->next_ip(instructions::data_push_has_block.width);
      return ((instructions::Instruction)opcodes[call_frame->ip()])(state, call_frame, opcodes);
    }
  }
}