Browse Source

[LibOS] Remove #ifdef __i386__ in shim_checkpoint.h

Isaku Yamahata 6 years ago
parent
commit
a771c171a2
1 changed files with 3 additions and 4 deletions
  1. 3 4
      LibOS/shim/include/shim_checkpoint.h

+ 3 - 4
LibOS/shim/include/shim_checkpoint.h

@@ -32,12 +32,11 @@
 #include <stdarg.h>
 
 #ifdef __i386__
-typedef uint32_t ptr_t;
-# define hashfunc hash32
-#else
+# error "x86-32 support is heavily broken."
+#endif
+
 typedef uint64_t ptr_t;
 # define hashfunc hash64
-#endif
 
 #define __attribute_migratable __attribute__((section(".migratable")))