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.
20 lines
358 B
20 lines
358 B
|
|
#include "Type.h"
|
|
|
|
#include <llvm/IR/DerivedTypes.h>
|
|
|
|
namespace evmcc
|
|
{
|
|
|
|
llvm::IntegerType* Type::i256;
|
|
llvm::IntegerType* Type::lowPrecision;
|
|
llvm::Type* Type::Void;
|
|
|
|
void Type::init(llvm::LLVMContext& _context)
|
|
{
|
|
i256 = llvm::Type::getIntNTy(_context, 256);
|
|
lowPrecision = llvm::Type::getInt64Ty(_context);
|
|
Void = llvm::Type::getVoidTy(_context);
|
|
}
|
|
|
|
}
|
|
|