projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24787fa
)
added std:: to endl
author
Anand Shukla
<ashukla@cs.uiuc.edu>
Thu, 11 Jul 2002 00:17:17 +0000
(
00:17
+0000)
committer
Anand Shukla
<ashukla@cs.uiuc.edu>
Thu, 11 Jul 2002 00:17:17 +0000
(
00:17
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2875
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineFunction.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineFunction.cpp
b/lib/CodeGen/MachineFunction.cpp
index ee3884288f4406974723d862377cdf594291eab0..a435be646b88cf04ff3b43baf44aefc77def6326 100644
(file)
--- 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];