diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-31 19:32:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-31 19:32:14 +0000 |
commit | 8633a487c718b72444b62fef93bec717e99de351 (patch) | |
tree | 7a7cc74b228f6bbee524ad181e49672ece719b75 /tools | |
parent | 7541b89092ed9c2e2c094e1a87cb111144601541 (diff) | |
download | external_llvm-8633a487c718b72444b62fef93bec717e99de351.zip external_llvm-8633a487c718b72444b62fef93bec717e99de351.tar.gz external_llvm-8633a487c718b72444b62fef93bec717e99de351.tar.bz2 |
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')
-rw-r--r-- | tools/analyze/analyze.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/analyze/analyze.cpp b/tools/analyze/analyze.cpp index ade03de..f6a88c1 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); |