forked from OSchip/llvm-project
parent
fcdc2ff6e0
commit
eb98368c29
|
@ -260,6 +260,17 @@ public:
|
|||
vector<MachineInstr*>& minstrVec,
|
||||
vector<TmpInstruction*>& tempVec,
|
||||
TargetMachine& target) const = 0;
|
||||
|
||||
|
||||
// create copy instruction(s)
|
||||
virtual void
|
||||
CreateCopyInstructionsByType(const TargetMachine& target,
|
||||
Value* src,
|
||||
Instruction* dest,
|
||||
vector<MachineInstr*>& minstrVec) const = 0;
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
@ -260,6 +260,17 @@ public:
|
|||
vector<MachineInstr*>& minstrVec,
|
||||
vector<TmpInstruction*>& tempVec,
|
||||
TargetMachine& target) const = 0;
|
||||
|
||||
|
||||
// create copy instruction(s)
|
||||
virtual void
|
||||
CreateCopyInstructionsByType(const TargetMachine& target,
|
||||
Value* src,
|
||||
Instruction* dest,
|
||||
vector<MachineInstr*>& minstrVec) const = 0;
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue