It seems the llvm::OStream class does not handle stream manipulators.

For now, just grab the stream and perform the output on it directly.

llvm-svn: 32441
This commit is contained in:
John Criswell 2006-12-11 19:15:36 +00:00
parent e9a203c4e5
commit b3b285185f
1 changed files with 7 additions and 7 deletions

View File

@ -713,7 +713,7 @@ static bool isFlagUser(SDNode *A) {
void ScheduleDAGSimple::printNI(OStream &O, NodeInfo *NI) const {
#ifndef NDEBUG
SDNode *Node = NI->Node;
O << " "
*(O.stream()) << " "
<< std::hex << Node << std::dec
<< ", Lat=" << NI->Latency
<< ", Slot=" << NI->Slot