diff options
Diffstat (limited to 'llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp b/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp index 82a767612e2..b71c30fe3e0 100644 --- a/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp +++ b/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp @@ -20,9 +20,11 @@ namespace llvm { SDValue LanaiSelectionDAGInfo::EmitTargetCodeForMemcpy( - SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, - SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, - MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const { + SelectionDAG & /*DAG*/, const SDLoc & /*dl*/, SDValue /*Chain*/, + SDValue /*Dst*/, SDValue /*Src*/, SDValue Size, unsigned /*Align*/, + bool /*isVolatile*/, bool /*AlwaysInline*/, + MachinePointerInfo /*DstPtrInfo*/, + MachinePointerInfo /*SrcPtrInfo*/) const { ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); if (!ConstantSize) return SDValue(); |