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:
parent
e9a203c4e5
commit
b3b285185f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue