Browse Source

Check if uint128 is enabled

cl-refactor
Paweł Bylica 10 years ago
parent
commit
3ec710bf49
  1. 2
      libevmjit/Arith256.cpp

2
libevmjit/Arith256.cpp

@ -333,7 +333,9 @@ llvm::Value* Arith256::mulmod(llvm::Value* _arg1, llvm::Value* _arg2, llvm::Valu
namespace
{
#ifdef __SIZEOF_INT128__
using uint128 = __uint128_t;
#endif
struct uint256
{

Loading…
Cancel
Save