From d2ba53bdaaa33e86ce6ac0e6245424c24404ba3b Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 6 May 2014 21:04:27 +0000 Subject: [PATCH] Fix odd formatting that snuck into last patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208130 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/SubtargetFeature.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/MC/SubtargetFeature.cpp b/lib/MC/SubtargetFeature.cpp index f2d12afa980..844df0aed10 100644 --- a/lib/MC/SubtargetFeature.cpp +++ b/lib/MC/SubtargetFeature.cpp @@ -196,9 +196,9 @@ void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry, /// ToggleFeature - Toggle a feature and returns the newly updated feature /// bits. -uint64_t SubtargetFeatures::ToggleFeature( - uint64_t Bits, const StringRef Feature, - ArrayRef FeatureTable) { +uint64_t +SubtargetFeatures::ToggleFeature(uint64_t Bits, const StringRef Feature, + ArrayRef FeatureTable) { // Find feature in table. const SubtargetFeatureKV *FeatureEntry = -- 2.34.1