Proteus
Programmable JIT compilation and optimization for C/C++ using LLVM
Loading...
Searching...
No Matches
MLIRIRValue.h
Go to the documentation of this file.
1#ifndef PROTEUS_IMPL_MLIR_IR_VALUE_H
2#define PROTEUS_IMPL_MLIR_IR_VALUE_H
3
5
6#include <mlir/IR/Value.h>
7
8namespace proteus {
9
16class MLIRIRValue : public IRValue {
17public:
18 mlir::Value V;
19 explicit MLIRIRValue(mlir::Value V) : V(V) {}
20};
21
22} // namespace proteus
23
24#endif // PROTEUS_IMPL_MLIR_IR_VALUE_H
Definition IRValue.h:15
Definition MLIRIRValue.h:16
MLIRIRValue(mlir::Value V)
Definition MLIRIRValue.h:19
mlir::Value V
Definition MLIRIRValue.h:18
Definition MemoryCache.h:27