~ubuntu-branches/ubuntu/maverick/clamav/maverick-proposed

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-17 12:30:20 UTC
  • mfrom: (0.35.17 sid)
  • Revision ID: james.westby@ubuntu.com-20101217123020-dbtsp3upnaxsgg89
Tags: 0.96.5+dfsg-1ubuntu1.10.10.1
* Microversion update for Maverick (LP: #691414)
  - Improved database login times
  - Expanded use of new bytecode signatures
  - Other bugfixes/improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
#else
200
200
  errs() << "SelectionDAG::getGraphAttrs is only available in debug builds"
201
201
         << " on systems with Graphviz or gv!\n";
202
 
  return std::string("");
 
202
  return std::string();
203
203
#endif
204
204
}
205
205
 
278
278
      FlaggedNodes.push_back(N);
279
279
    while (!FlaggedNodes.empty()) {
280
280
      O << DOTGraphTraits<SelectionDAG*>
281
 
             ::getSimpleNodeLabel(FlaggedNodes.back(), DAG);
 
281
        ::getSimpleNodeLabel(FlaggedNodes.back(), DAG);
282
282
      FlaggedNodes.pop_back();
283
283
      if (!FlaggedNodes.empty())
284
284
        O << "\n    ";