Added X64_64 support for the x86-64 platform

This commit is contained in:
Egor Sheremetov 2024-02-01 20:40:44 +01:00 committed by Roman Venediktov
parent c89cc167ef
commit 6359a1731c
6 changed files with 159 additions and 118 deletions

View file

@ -1,6 +1,7 @@
#ifndef __LAMA_RUNTIME__
#define __LAMA_RUNTIME__
#include "runtime_common.h"
#include <assert.h>
#include <ctype.h>
#include <errno.h>
@ -13,7 +14,7 @@
#include <sys/mman.h>
#include <time.h>
#define WORD_SIZE (CHAR_BIT * sizeof(int))
#define WORD_SIZE (CHAR_BIT * sizeof(ptrt))
void failure (char *s, ...);