forked from NUDT-compiler/nudt-compiler-cpp
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.
13 lines
361 B
13 lines
361 B
#include "ir/IR.h"
|
|
|
|
namespace ir {
|
|
|
|
BinaryInst::BinaryInst(Opcode op, std::shared_ptr<Type> ty, Value* lhs,
|
|
Value* rhs, std::string name)
|
|
: Instruction(op, std::move(ty), std::move(name)), lhs_(lhs), rhs_(rhs) {}
|
|
|
|
ReturnInst::ReturnInst(Value* val)
|
|
: Instruction(Opcode::Ret, Type::Void(), ""), value_(val) {}
|
|
|
|
} // namespace ir
|