From: Anand Shukla Date: Thu, 11 Jul 2002 00:17:17 +0000 (+0000) Subject: added std:: to endl X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e683f773a47423bbbaf90980cefea6f19c6f6d83;p=oota-llvm.git added std:: to endl git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2875 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index ee3884288f4..a435be646b8 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];