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.
|
// SSA 值体系抽象:
|
|
// - 常量、参数、指令结果等统一为 Value
|
|
// - 提供类型信息与使用/被使用关系(按需要实现)
|
|
#include "ir/IR.h"
|
|
|
|
namespace ir {
|
|
|
|
ConstantInt::ConstantInt(int v) : Value(Type::Int32(), ""), value_(v) {}
|
|
|
|
} // namespace ir
|