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