summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorAnand Shukla <ashukla@cs.uiuc.edu>2002-07-11 00:17:17 +0000
committerAnand Shukla <ashukla@cs.uiuc.edu>2002-07-11 00:17:17 +0000
commite683f773a47423bbbaf90980cefea6f19c6f6d83 (patch)
tree56868fc3249eae062d4f5850082c235902d27aef /lib/CodeGen
parent24787fa2ed43dc58813b14ac18fbc402a7315062 (diff)
downloadllvm-e683f773a47423bbbaf90980cefea6f19c6f6d83.tar.gz
llvm-e683f773a47423bbbaf90980cefea6f19c6f6d83.tar.bz2
llvm-e683f773a47423bbbaf90980cefea6f19c6f6d83.tar.xz
added std:: to endl
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/MachineFunction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp
index ee3884288f..a435be646b 100644
--- a/lib/CodeGen/MachineFunction.cpp
+++ b/lib/CodeGen/MachineFunction.cpp
@@ -278,7 +278,7 @@ MachineCodeForMethod::dump() const
for (Function::const_iterator BB = method->begin(); BB != method->end(); ++BB)
{
- std::cerr << endl << (*BB).getName() << " (" << (const void*) BB << ")" << ":" << endl;
+ std::cerr << std::endl << (*BB).getName() << " (" << (const void*) BB << ")" << ":" << std::endl;
MachineCodeForBasicBlock& mvec = MachineCodeForBasicBlock::get(BB);
for (unsigned i=0; i < mvec.size(); i++)
std::cerr << "\t" << *mvec[i];