소스 검색

[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")))