diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-07-11 00:17:17 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-07-11 00:17:17 +0000 |
commit | e683f773a47423bbbaf90980cefea6f19c6f6d83 (patch) | |
tree | 56868fc3249eae062d4f5850082c235902d27aef /lib/CodeGen/MachineFunction.cpp | |
parent | 24787fa2ed43dc58813b14ac18fbc402a7315062 (diff) |
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/MachineFunction.cpp')
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 2 |
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]; |