blob: b33cc39e8b47a108c496d533add530fe150af980 [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 = false;
}
#endif // MVM_OBJECT_HEADER_H