Searched defs:TypedValue (Results 1 – 2 of 2) sorted by relevance
444 struct TypedValue : Value { struct447 static bool classof(Value value) { return llvm::isa<Ty>(value.getType()); } in classof()450 Ty getType() const { return llvm::cast<Ty>(Value::getType()); } in getType()451 void setType(Ty ty) { Value::setType(ty); } in setType()497 using TypedValue = std::conditional_t<std::is_same_v<Ty, mlir::Type>, variable
18 TEST(IRMapping, TypedValue) { in TEST() argument