1. fd93908 Remove trailing whitespace by Misha Brukman · 19 years ago
  2. 566f600 Improve doxygen, from part of Evan's patch that didn't apply. by Chris Lattner · 19 years ago
  3. 0f67dd6 Improve doxygen documentation, patch contributed by Evan Jones! by Chris Lattner · 19 years ago
  4. 3464547 add an argument to allow avoiding deleting phi nodes. by Chris Lattner · 19 years ago
  5. 0d1e407 remove all of the various setName implementations, consolidating them into by Chris Lattner · 20 years ago
  6. 18221ed Remove the 2nd argument to Value::setName by Chris Lattner · 20 years ago
  7. ad993cb add a new method. by Chris Lattner · 20 years ago
  8. 1f21ef1 make this more efficient. Scan up to 16 nodes, not the whole list. by Chris Lattner · 20 years ago
  9. 35f0aec Reduce the amount of searching this assertion does. On a testcase of mine, by Chris Lattner · 20 years ago
  10. bca8144 Improve conformance with the Misha spelling benchmark suite by Chris Lattner · 20 years ago
  11. 3cf8e68 Adjust to ilist changes. by Chris Lattner · 20 years ago
  12. 96d83f6 Adjust to changes in User class. by Chris Lattner · 20 years ago
  13. f23586c Check in the file I forgot last night, to solve all of the crashes in every by Chris Lattner · 20 years ago
  14. 4b83380 Implement remove/eraseFromParent methods by Chris Lattner · 20 years ago
  15. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  16. 4433629 Fix #includes of i*.h files => Instructions.h as per PR403 by Misha Brukman · 20 years ago
  17. a9e7781 Find bugs sooner rather than later. In this case, don't allow the creation by Chris Lattner · 20 years ago
  18. 9bf2a92 Fix GCC warnings by Chris Lattner · 20 years ago
  19. f878218 As much as I dislike doing this, it's the only fix for VC8.0 that I can come by Chris Lattner · 20 years ago
  20. ea51deb Fix retriving parent Function. by Misha Brukman · 20 years ago
  21. 98eb626 Assert if deleting BasicBlock before removing it from Function. by Misha Brukman · 20 years ago
  22. b171942 Remove obsolete method by Chris Lattner · 21 years ago
  23. 4f05611 Adjust to the new BB ctor by Chris Lattner · 21 years ago
  24. c6aa017 When splitting a basic block, insert the new half immediately after the first by Chris Lattner · 21 years ago
  25. f2c3106 In BasicBlock::splitBasicBlock, just use islist::splice to move the instructions, by Chris Lattner · 21 years ago
  26. 108e4ab Minor cleanups and simplifications by Chris Lattner · 21 years ago
  27. f8485c6 Start using the nicer terminator auto-insertion API by Chris Lattner · 21 years ago
  28. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  29. e860e0d Make code gcc 3.4 clean by Chris Lattner · 21 years ago
  30. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 21 years ago
  31. 1c9ab51 Do not use BasicBlock::succ_iterator by Chris Lattner · 21 years ago
  32. 4bd4aa5 Allow specifying the name for the newly split basic block by Chris Lattner · 21 years ago
  33. 02a78cf Fix a bug that occurred when removing the last predecessor INTO an infinite loop by Chris Lattner · 21 years ago
  34. e408e25 Remove unnecesary &*'s by Chris Lattner · 21 years ago
  35. 6e6026b - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 22 years ago
  36. 0b16ae2 - Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd to by Chris Lattner · 22 years ago
  37. dee430d Changes to support PHINode::removeIncoming changes by Chris Lattner · 22 years ago
  38. 0a1a874 - Add new ctor to BasicBlock to allow insertion before any BB, not just at by Chris Lattner · 22 years ago
  39. d1e693f Enable "garbage detection" of LLVM objects. Now users should be obnoxious by Chris Lattner · 22 years ago
  40. bded132 Move code out of header files into .cpp files to make future changes easier by Chris Lattner · 22 years ago
  41. b2e80a6 Avoid warning: control reaches end of non-void function by Chris Lattner · 22 years ago
  42. 08272fb Moved MachineCodeForBB to be an annotation on BasicBlock. by Vikram S. Adve · 22 years ago
  43. 7e70829 MEGAPATCH checkin. by Chris Lattner · 22 years ago
  44. 89d46b0 Fix bug: test/Regression/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll by Chris Lattner · 22 years ago
  45. 87a09b1 Fix bug: test/Regression/Transforms/CFGSimplify/2002-05-21-PHIElimination.ll by Chris Lattner · 22 years ago
  46. c6f3ae5 Eliminate duplicate or unneccesary #include's by Chris Lattner · 22 years ago
  47. 31bcdb8 Split ConstantVals.h into Constant.h and Constants.h by Chris Lattner · 22 years ago
  48. b7653df s/Method/Function by Chris Lattner · 22 years ago
  49. 1907aba Move include/llvm/ValueHolderImpl.h to lib/VMCore/ValueHolderImpl.h by Chris Lattner · 22 years ago
  50. e8e320d Fix bug: test/Regression/Other/2002-02-24-InlineBrokePHINodes.ll by Chris Lattner · 23 years ago
  51. 455889a * Pull BasicBlock::pred_* and BasicBlock::succ_* out of BasicBlock.h and into by Chris Lattner · 23 years ago
  52. 697954c Changes to build successfully with GCC 3.02 by Chris Lattner · 23 years ago
  53. e9bb2df Rename ConstPoolVal -> Constant by Chris Lattner · 23 years ago
  54. 7061dc5 Split the PHINode class out from the iOther.h file into the iPHINode.h file by Chris Lattner · 23 years ago
  55. b00c582 Commit more code over to new cast style by Chris Lattner · 23 years ago
  56. 1d87bcf Convert more code to use new style casts Eliminate old style casts from value.h by Chris Lattner · 23 years ago
  57. f0604b8 Pull predecessor and successor iterators out of the CFG*.h files, and plop them into by Chris Lattner · 23 years ago
  58. 6892b12 Support new setName itf by Chris Lattner · 23 years ago
  59. b639339 Added vector of machine instructions for the basic block. by Vikram S. Adve · 23 years ago
  60. a3d3c2b * ValueHolder now takes 3 arguments by Chris Lattner · 23 years ago
  61. b47af25 Add implementation of BasicBlock::removePredecessor code that was factored by Chris Lattner · 23 years ago
  62. 7fc9fe3 Miscellaneous cleanups: by Chris Lattner · 23 years ago
  63. 0095054 Initial revision by Chris Lattner · 23 years ago