[llvm] r313946 - Reformat.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 21 18:01:31 PDT 2017


Author: chapuni
Date: Thu Sep 21 18:01:31 2017
New Revision: 313946

URL: http://llvm.org/viewvc/llvm-project?rev=313946&view=rev
Log:
Reformat.

Modified:
    llvm/trunk/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp

Modified: llvm/trunk/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp?rev=313946&r1=313945&r2=313946&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp (original)
+++ llvm/trunk/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp Thu Sep 21 18:01:31 2017
@@ -183,7 +183,7 @@ namespace {
    friend raw_ostream &operator<< (raw_ostream &OS, const DepChain &D);
   };
 
- raw_ostream &operator<< (raw_ostream &OS, const DepChain &D) {
+  raw_ostream &operator<<(raw_ostream &OS, const DepChain &D) {
     const ChainOfDependences &CD = D.Chain;
     int ChainSize = CD.size();
     OS << "**DepChain Start::**\n";
@@ -206,7 +206,7 @@ namespace {
     bool isDefined() { return Inst2Replace != nullptr; }
   };
   typedef struct ReuseValue ReuseValue;
-  raw_ostream &operator<< (raw_ostream &OS, const ReuseValue &RU) {
+  raw_ostream &operator<<(raw_ostream &OS, const ReuseValue &RU) {
     OS << "** ReuseValue ***\n";
     OS << "Instruction to Replace: " << *(RU.Inst2Replace) << "\n";
     OS << "Backedge Instruction: " << *(RU.BackedgeInst) << "\n";




More information about the llvm-commits mailing list