[llvm] r291193 - Code cleanup: Remove tab indents.
Logan Chien via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 5 15:41:33 PST 2017
Author: logan
Date: Thu Jan 5 17:41:33 2017
New Revision: 291193
URL: http://llvm.org/viewvc/llvm-project?rev=291193&view=rev
Log:
Code cleanup: Remove tab indents.
Modified:
llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp
Modified: llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp?rev=291193&r1=291192&r2=291193&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.cpp Thu Jan 5 17:41:33 2017
@@ -3102,9 +3102,9 @@ static bool isCombineInstrCandidateFP(co
case AArch64::FSUBv2f32:
case AArch64::FSUBv2f64:
case AArch64::FSUBv4f32:
- TargetOptions Options = Inst.getParent()->getParent()->getTarget().Options;
- return (Options.UnsafeFPMath ||
- Options.AllowFPOpFusion == FPOpFusion::Fast);
+ TargetOptions Options = Inst.getParent()->getParent()->getTarget().Options;
+ return (Options.UnsafeFPMath ||
+ Options.AllowFPOpFusion == FPOpFusion::Fast);
}
return false;
}
More information about the llvm-commits
mailing list