mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 06:06:19 +00:00
added std:: to endl
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2875 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
24787fa2ed
commit
e683f773a4
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user