Remove tab characters and 80-col.
authorEric Christopher <echristo@apple.com>
Mon, 12 Jul 2010 05:26:37 +0000 (05:26 +0000)
committerEric Christopher <echristo@apple.com>
Mon, 12 Jul 2010 05:26:37 +0000 (05:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108127 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/CFGPrinter.h
include/llvm/Support/raw_ostream.h

index 6ad2e5a5b1f97732c48bdfc0377ce7eaa0a6e775..ac8f59602daba603eaa77e5ea48aea80c1e5b09d 100644 (file)
@@ -1,4 +1,4 @@
-//===-- CFGPrinter.h - CFG printer external interface ------------*- C++ -*-===//
+//===-- CFGPrinter.h - CFG printer external interface -----------*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -43,8 +43,8 @@ struct DOTGraphTraits<const Function*> : public DefaultDOTGraphTraits {
     return OS.str();
   }
 
-  static std::string getCompleteNodeLabel(const BasicBlock *Node,
-                                         const Function *Graph) {
+  static std::string getCompleteNodeLabel(const BasicBlock *Node, 
+                                          const Function *Graph) {
     std::string Str;
     raw_string_ostream OS(Str);
 
index 90eaeea12dd8b87b2c5d0fdc8092499b9266e306..bb9a52330d7f234f2ec8d150ee80b788edcc885e 100644 (file)
@@ -234,8 +234,8 @@ public:
   /// @param bold bold/brighter text, default false
   /// @param bg if true change the background, default: change foreground
   /// @returns itself so it can be used within << invocations
-  virtual raw_ostream &changeColor(enum Colors, bool = false,
-                                  bool = false) { return *this; }
+  virtual raw_ostream &changeColor(enum Colors, bool = false, bool = false) { 
+    return *this; }
 
   /// Resets the colors to terminal defaults. Call this when you are done
   /// outputting colored text, or before program exit.