forked from OSchip/llvm-project
Minor change to interface for Create{Zero,Sign}ExtensionsInstructions.
llvm-svn: 3979
This commit is contained in:
parent
6443769b34
commit
5b5dd671b2
|
@ -334,8 +334,8 @@ public:
|
|||
virtual void CreateSignExtensionInstructions(const TargetMachine& target,
|
||||
Function* F,
|
||||
Value* srcVal,
|
||||
unsigned int srcSizeInBits,
|
||||
Value* dest,
|
||||
Value* destVal,
|
||||
unsigned int numLowBits,
|
||||
std::vector<MachineInstr*>& mvec,
|
||||
MachineCodeForInstruction& mcfi) const=0;
|
||||
|
||||
|
@ -348,8 +348,8 @@ public:
|
|||
virtual void CreateZeroExtensionInstructions(const TargetMachine& target,
|
||||
Function* F,
|
||||
Value* srcVal,
|
||||
Value* destVal,
|
||||
unsigned int srcSizeInBits,
|
||||
Value* dest,
|
||||
std::vector<MachineInstr*>& mvec,
|
||||
MachineCodeForInstruction& mcfi) const=0;
|
||||
};
|
||||
|
|
|
@ -334,8 +334,8 @@ public:
|
|||
virtual void CreateSignExtensionInstructions(const TargetMachine& target,
|
||||
Function* F,
|
||||
Value* srcVal,
|
||||
unsigned int srcSizeInBits,
|
||||
Value* dest,
|
||||
Value* destVal,
|
||||
unsigned int numLowBits,
|
||||
std::vector<MachineInstr*>& mvec,
|
||||
MachineCodeForInstruction& mcfi) const=0;
|
||||
|
||||
|
@ -348,8 +348,8 @@ public:
|
|||
virtual void CreateZeroExtensionInstructions(const TargetMachine& target,
|
||||
Function* F,
|
||||
Value* srcVal,
|
||||
Value* destVal,
|
||||
unsigned int srcSizeInBits,
|
||||
Value* dest,
|
||||
std::vector<MachineInstr*>& mvec,
|
||||
MachineCodeForInstruction& mcfi) const=0;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue