Преглед изворни кода

[LibOS] Remove #ifdef __i386__ in shim_checkpoint.h

Isaku Yamahata пре 6 година
родитељ
комит
a771c171a2
1 измењених фајлова са 3 додато и 4 уклоњено
  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")))