The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#ifndef SPVM_CONSTANT_POOL_TYPE_H
#define SPVM_CONSTANT_POOL_TYPE_H

#include "spvm_base.h"

// SPVM_CONSTANT_POOL_TYPE
struct SPVM_constant_pool_type {
  int32_t code;
  int32_t name_id;
  int32_t parent_type_id;
  int32_t element_type_id;
  int32_t dimension;
  int32_t base_id;
  _Bool is_package;
  int32_t package_id;
};

#endif