aboutsummaryrefslogtreecommitdiff
path: root/funcjmp_ext_x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcjmp_ext_x86.c')
-rw-r--r--funcjmp_ext_x86.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/funcjmp_ext_x86.c b/funcjmp_ext_x86.c
index 9bf20f4..46e76bd 100644
--- a/funcjmp_ext_x86.c
+++ b/funcjmp_ext_x86.c
@@ -1,6 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
+#ifndef __i386
+#error "Unsupported Architecture"
+#endif
#define INTEL_ASM(_asm_str) asm volatile(".intel_syntax noprefix"); \
asm volatile(_asm_str); \