Home
last modified time | relevance | path

Searched defs:TypedValue (Results 1 – 2 of 2) sorted by relevance

/llvm-project/mlir/include/mlir/IR/
H A DValue.h444 struct TypedValue : Value { struct
447 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
/llvm-project/mlir/unittests/IR/
H A DIRMapping.cpp18 TEST(IRMapping, TypedValue) { in TEST() argument