diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-22 00:00:37 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-22 00:00:37 +0000 |
commit | 650ba8eb560bf802cf7a7ecc973b603cfb0c4b33 (patch) | |
tree | eca436a659e96cf851f7eb440e1950f8305adeb9 /llvm/tools/analyze/analyze.cpp | |
parent | b1c9317bb416944ff2b491b20ca28e2241a5f51f (diff) | |
download | bcm5719-llvm-650ba8eb560bf802cf7a7ecc973b603cfb0c4b33.tar.gz bcm5719-llvm-650ba8eb560bf802cf7a7ecc973b603cfb0c4b33.zip |
Remove trailing whitespace
llvm-svn: 21428
Diffstat (limited to 'llvm/tools/analyze/analyze.cpp')
-rw-r--r-- | llvm/tools/analyze/analyze.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/tools/analyze/analyze.cpp b/llvm/tools/analyze/analyze.cpp index 0ac70687da5..2e73e345e07 100644 --- a/llvm/tools/analyze/analyze.cpp +++ b/llvm/tools/analyze/analyze.cpp @@ -1,14 +1,14 @@ //===- analyze.cpp - The LLVM analyze utility -----------------------------===// -// +// // 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 utility is designed to print out the results of running various analysis -// passes on a program. This is useful for understanding a program, or for +// passes on a program. This is useful for understanding a program, or for // debugging an analysis pass. // // analyze --help - Output information about command line switches @@ -37,11 +37,11 @@ struct ModulePassPrinter : public ModulePass { virtual bool runOnModule(Module &M) { std::cout << "Printing analysis '" << PassToPrint->getPassName() << "':\n"; getAnalysisID<Pass>(PassToPrint).print(std::cout, &M); - + // Get and print pass... return false; } - + virtual const char *getPassName() const { return "'Pass' Printer"; } virtual void getAnalysisUsage(AnalysisUsage &AU) const { @@ -150,7 +150,7 @@ int main(int argc, char **argv) { // Create a new optimization pass for each one specified on the command line for (unsigned i = 0; i < AnalysesList.size(); ++i) { const PassInfo *Analysis = AnalysesList[i]; - + if (Analysis->getNormalCtor()) { Pass *P = Analysis->getNormalCtor()(); Passes.add(P); |