You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sledge/runtime/include/arch/context.h

15 lines
278 B

#ifndef ARCH_CONTEXT_H
#define ARCH_CONTEXT_H
#if defined(AARCH64)
#include "aarch64/context.h"
#elif defined(X86_64)
#include "x86_64/context.h"
#else
#warning "Architecture not set. Using x86_64"
#define X86_64
#include "x86_64/context.h"
#endif
#endif /* ARCH_CONTEXT_H */