You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
278 B

#include "Type.h"
#include <llvm/IR/DerivedTypes.h>
namespace evmcc
{
llvm::Type* Type::i256;
llvm::Type* Type::lowPrecision;
void Type::init(llvm::LLVMContext& _context)
{
i256 = llvm::Type::getIntNTy(_context, 256);
lowPrecision = llvm::Type::getInt64Ty(_context);
}
}