blob: 6b38b0b6c514a33c6994675d1c8d5c655ee2df44 [file] [log] [blame]
//===----- ObjectHeader.h - Macros for describing an object header --------===//
//
// The VMKit project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MVM_OBJECT_HEADER_H
#define MVM_OBJECT_HEADER_H
#include <stdint.h>
namespace mvm {
static const uint32_t GCBits = 8;
static const bool MovesObject = true;
}
#endif // MVM_OBJECT_HEADER_H