From e683f773a47423bbbaf90980cefea6f19c6f6d83 Mon Sep 17 00:00:00 2001 From: Anand Shukla Date: Thu, 11 Jul 2002 00:17:17 +0000 Subject: added std:: to endl git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2875 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineFunction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/CodeGen/MachineFunction.cpp') 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]; -- cgit v1.2.3-18-g5258