summaryrefslogtreecommitdiff
path: root/tools/opt
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-21 21:13:18 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-21 21:13:18 +0000
commit2b37d7cf28b1382420b5e4007042feeb66d21ac8 (patch)
treeedf1e11bc9d3208c7e04392a840f8812b506a751 /tools/opt
parent019b63931b946a7dbf55282f4dce7d94d617c5fb (diff)
downloadllvm-2b37d7cf28b1382420b5e4007042feeb66d21ac8.tar.gz
llvm-2b37d7cf28b1382420b5e4007042feeb66d21ac8.tar.bz2
llvm-2b37d7cf28b1382420b5e4007042feeb66d21ac8.tar.xz
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21416 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt')
-rw-r--r--tools/opt/PrintSCC.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/opt/PrintSCC.cpp b/tools/opt/PrintSCC.cpp
index d37c4caa83..c0adf5ca03 100644
--- a/tools/opt/PrintSCC.cpp
+++ b/tools/opt/PrintSCC.cpp
@@ -1,10 +1,10 @@
//===- PrintSCC.cpp - Enumerate SCCs in some key graphs -------------------===//
-//
+//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// This file provides passes to print out SCCs in a CFG or a CallGraph.
@@ -17,10 +17,10 @@
// analyze -cfgscc to print the SCCs in each CFG of a module.
// analyze -cfgscc -stats to print the #SCCs and the maximum SCC size.
// analyze -cfgscc -debug > /dev/null to watch the algorithm in action.
-//
+//
// and similarly:
// analyze -callscc [-stats] [-debug] to print SCCs in the CallGraph
-//
+//
// (3) To test the scc_iterator.
//
//===----------------------------------------------------------------------===//