From d51e3ac44778c8f91257c48cff8eaaa3d4b17e2e Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 6 Jun 2019 10:15:26 +0000 Subject: [PATCH] Fix whitespace indentation. NFCI. Tabs are not our friends. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@362694 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/TargetLowering.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/CodeGen/TargetLowering.h b/include/llvm/CodeGen/TargetLowering.h index ad17fd84558..1bd0f2a8af4 100644 --- a/include/llvm/CodeGen/TargetLowering.h +++ b/include/llvm/CodeGen/TargetLowering.h @@ -804,8 +804,8 @@ public: /// Returns true if the target can instruction select the specified FP /// immediate natively. If false, the legalizer will materialize the FP /// immediate as a load from a constant pool. - virtual bool isFPImmLegal(const APFloat &/*Imm*/, EVT /*VT*/, - bool ForCodeSize = false) const { + virtual bool isFPImmLegal(const APFloat & /*Imm*/, EVT /*VT*/, + bool ForCodeSize = false) const { return false; } -- 2.50.1