summaryrefslogtreecommitdiff
path: root/tools/analyze/analyze.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-31 19:32:14 +0000
committerChris Lattner <sabre@nondot.org>2002-07-31 19:32:14 +0000
commit8633a487c718b72444b62fef93bec717e99de351 (patch)
tree7a7cc74b228f6bbee524ad181e49672ece719b75 /tools/analyze/analyze.cpp
parent7541b89092ed9c2e2c094e1a87cb111144601541 (diff)
downloadllvm-8633a487c718b72444b62fef93bec717e99de351.tar.gz
llvm-8633a487c718b72444b62fef93bec717e99de351.tar.bz2
llvm-8633a487c718b72444b62fef93bec717e99de351.tar.xz
Changes to be GCC3.1 friendly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3187 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze/analyze.cpp')
-rw-r--r--tools/analyze/analyze.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp
index ade03debb5..f6a88c18f0 100644
--- a/tools/analyze/analyze.cpp
+++ b/tools/analyze/analyze.cpp
@@ -130,8 +130,8 @@ int main(int argc, char **argv) {
Passes.add(new ModulePassPrinter(Analysis));
} else
- cerr << argv[0] << ": cannot create pass: "
- << Analysis->getPassName() << "\n";
+ std::cerr << argv[0] << ": cannot create pass: "
+ << Analysis->getPassName() << "\n";
}
Passes.run(*CurMod);