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.
22 lines
210 B
22 lines
210 B
|
|
#pragma once
|
|
|
|
#include <llvm/IR/IRBuilder.h>
|
|
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
namespace jit
|
|
{
|
|
|
|
class Endianness
|
|
{
|
|
public:
|
|
|
|
static llvm::Value* toBE(llvm::IRBuilder<>& _builder, llvm::Value* _word);
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|