mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
fix duplicate definition errors
llvm-svn: 26896
This commit is contained in:
parent
09ede9ec9f
commit
4b7aa59bbc
@ -239,6 +239,24 @@ static bool isFloatingPointZero(SDOperand Op) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
|
||||||
|
/// specifies a splat of a single element that is suitable for input to
|
||||||
|
/// VSPLTB/VSPLTH/VSPLTW.
|
||||||
|
bool PPC::isSplatShuffleMask(SDNode *N) {
|
||||||
|
assert(N->getOpcode() == ISD::BUILD_VECTOR);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
|
||||||
|
/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
|
||||||
|
unsigned PPC::getVSPLTImmediate(SDNode *N) {
|
||||||
|
assert(isSplatShuffleMask(N));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// LowerOperation - Provide custom lowering hooks for some operations.
|
/// LowerOperation - Provide custom lowering hooks for some operations.
|
||||||
///
|
///
|
||||||
SDOperand PPCTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
|
SDOperand PPCTargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
|
||||||
|
@ -89,11 +89,11 @@ namespace llvm {
|
|||||||
/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
|
/// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand
|
||||||
/// specifies a splat of a single element that is suitable for input to
|
/// specifies a splat of a single element that is suitable for input to
|
||||||
/// VSPLTB/VSPLTH/VSPLTW.
|
/// VSPLTB/VSPLTH/VSPLTW.
|
||||||
bool isSplatShuffleMask(SDNode *N) { return false; } // FIXME:
|
bool isSplatShuffleMask(SDNode *N);
|
||||||
|
|
||||||
/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
|
/// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the
|
||||||
/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
|
/// specified isSplatShuffleMask VECTOR_SHUFFLE mask.
|
||||||
unsigned getVSPLTImmediate(SDNode *N) { return 0; } // FIXME:
|
unsigned getVSPLTImmediate(SDNode *N);
|
||||||
}
|
}
|
||||||
|
|
||||||
class PPCTargetLowering : public TargetLowering {
|
class PPCTargetLowering : public TargetLowering {
|
||||||
|
Loading…
Reference in New Issue
Block a user