Files
triton/include/ir/value.h

25 lines
268 B
C
Raw Normal View History

#ifndef TDL_INCLUDE_IR_VALUE_H
#define TDL_INCLUDE_IR_VALUE_H
#include <string>
namespace tdl{
namespace ir{
class type;
/* Value */
class value {
public:
void set_name(const std::string &name);
type* get_type();
private:
std::string name_;
};
}
}
#endif