From d1698af8c8127b0e9b2e72a83764dfed0e50e4a4 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Fri, 30 Jun 2017 13:26:17 +0000 Subject: [PATCH] Remove unnecessary commented out argument. NFCI. llvm-svn: 306824 --- llvm/include/llvm/Target/TargetLowering.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Target/TargetLowering.h b/llvm/include/llvm/Target/TargetLowering.h index 22dab2e82828..47d96c56ad26 100644 --- a/llvm/include/llvm/Target/TargetLowering.h +++ b/llvm/include/llvm/Target/TargetLowering.h @@ -2722,7 +2722,7 @@ public: // This transformation may not be desirable if it disrupts a particularly // auspicious target-specific tree (e.g. bitfield extraction in AArch64). // By default, it returns true. - virtual bool isDesirableToCommuteWithShift(const SDNode *N /*Op*/) const { + virtual bool isDesirableToCommuteWithShift(const SDNode *N) const { return true; }