1. 0063225 Fix GlobalValue::isDeclaration() to always consider aliases to be definitions. by Chris Lattner · 13 years ago
  2. 97d9730 add comments. by Chris Lattner · 13 years ago
  3. 6c48244 consolidate GlobalValue::isDeclaration into one non-virtual function. by Chris Lattner · 13 years ago
  4. 9854e1b code cleanup by Chris Lattner · 13 years ago
  5. 1afcace Land the long talked about "type system rewrite" patch. This by Chris Lattner · 13 years ago
  6. 13fb0db hoist GlobalValue::removeDeadConstantUsers up to being a method on Constant. by Chris Lattner · 14 years ago
  7. 6bbe671 Make GlobalValue alignment consistent with load, store, and alloca by Dan Gohman · 14 years ago
  8. 60ad781 rename use_const_iterator to const_use_iterator for consistency's sake by Gabor Greif · 14 years ago
  9. 936c43b A function with no Module owner isn't materializable. This fixes F->dump() for by Nick Lewycky · 15 years ago
  10. f0356fe Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 15 years ago
  11. dc1472b In GlobalVariable::setInitializer, assert that the initializer has the by Jeffrey Yasskin · 15 years ago
  12. 7b550cc remove a bunch of extraneous LLVMContext arguments by Chris Lattner · 15 years ago
  13. 4a7642e the verifier shouldn't modify the IR. by Chris Lattner · 15 years ago
  14. 660a4f3 fix an issue where the verifier would reject a function whose entry by Chris Lattner · 15 years ago
  15. debcb01 Move types back to the 2.5 API. by Owen Anderson · 15 years ago
  16. 92ccf70 Finish migrating VMCore to StringRef/Twine based APIs. by Daniel Dunbar · 15 years ago
  17. 6e0d1cb Initial update to VMCore to use Twines for string arguments. by Daniel Dunbar · 15 years ago
  18. fd87a54 Convert a few more things to use raw_ostream. by Dan Gohman · 15 years ago
  19. c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 15 years ago
  20. c341f1c LLVMContext-ification. by Owen Anderson · 15 years ago
  21. dac237e Implement changes from Chris's feedback. Finish converting lib/Target. by Torok Edwin · 15 years ago
  22. e9b11b4 Switch GlobalVariable ctors to a sane API, where *either* a context or a module is required. by Owen Anderson · 15 years ago
  23. ab7c09b Start converting to new error handling API. by Torok Edwin · 15 years ago
  24. 3d29df3 Push LLVMContext through GlobalVariables and IRBuilder. by Owen Anderson · 15 years ago
  25. 04fb7c3 Revert r73790, and replace it with a significantly less ugly solution. Rather than trying to make the global reader-writer lock work, by Owen Anderson · 15 years ago
  26. 430444b Fix a serious bug that would cause deadlock during abstract type refinement. The constant creation by Owen Anderson · 15 years ago
  27. 319e632 make GlobalValue::removeDeadConstantUsers() const. by Chris Lattner · 16 years ago
  28. 86062af Use mayBeOverridden here, in anticipation of the by Duncan Sands · 16 years ago
  29. 19e861a Make safer variant of alias resolution routine to be default by Anton Korobeynikov · 16 years ago
  30. 820c83b Fix typo by Anton Korobeynikov · 16 years ago
  31. 832b2a9 Fix incorrect linker behaviour: we shouldn't resolve weak aliases. by Anton Korobeynikov · 16 years ago
  32. 6c80c38 eliminate calls to deprecated Use::init() interface by Gabor Greif · 16 years ago
  33. 28c3cff Factor code to copy global value attributes like by Duncan Sands · 16 years ago
  34. efe6536 merge of use-diet branch to trunk by Gabor Greif · 16 years ago
  35. 89a3d3f Slightly increase default set size. It's cheap and won't hurt. by Anton Korobeynikov · 17 years ago
  36. e846dd8 Add helper for ultimate aliasee resoltion by Anton Korobeynikov · 17 years ago
  37. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 17 years ago
  38. fe63fb9 Implement address space attribute for LLVM pointer types. Address spaces are by Christopher Lamb · 17 years ago
  39. 2bf6e6a handle gep aliasee by Chris Lattner · 17 years ago
  40. b4dbd9e Unbreak VC++ build. by Jeff Cohen · 17 years ago
  41. bb1f97c Fix typo. Interesting, but old variant worked too :) by Anton Korobeynikov · 17 years ago
  42. c6c98af Implement review feedback by Anton Korobeynikov · 17 years ago
  43. a80e118 Implement review feedback. Aliasees can be either GlobalValue's or by Anton Korobeynikov · 17 years ago
  44. 8b0a8c8 Implement aliases. This fixes PR1017 and it's dependent bugs. CFE part by Anton Korobeynikov · 17 years ago
  45. c763552 Implement the "thread_local" keyword. by Lauro Ramos Venancio · 17 years ago
  46. 00f23ec reapply my previous patch with a bugfix. by Chris Lattner · 18 years ago
  47. e2c2b76 revert my previous change, something strange is happening. by Chris Lattner · 18 years ago
  48. 1cf5574 Rework GlobalValue::removeDeadConstantUsers to always remove dead constant by Chris Lattner · 18 years ago
  49. ef9b9a7 For PR411: by Reid Spencer · 18 years ago
  50. adc9546 Add a version of the globalvariable ctor that inserts at a specific location. by Chris Lattner · 18 years ago
  51. cc041ba Initial checkin of the InlineAsm class by Chris Lattner · 19 years ago
  52. d0ff1ad Change the signature of replaceUsesOfWithOnConstant. The bool was always by Chris Lattner · 19 years ago
  53. fd93908 Remove trailing whitespace by Misha Brukman · 19 years ago
  54. 0d1e407 remove all of the various setName implementations, consolidating them into by Chris Lattner · 20 years ago
  55. 18221ed Remove the 2nd argument to Value::setName by Chris Lattner · 20 years ago
  56. 96d83f6 Adjust to changes in User class. by Chris Lattner · 20 years ago
  57. 4b83380 Implement remove/eraseFromParent methods by Chris Lattner · 20 years ago
  58. 551ccae Changes For Bug 352 by Reid Spencer · 20 years ago
  59. 8243976 Make GlobalVariable constructor assert when an initializer is of incorrect type. by Alkis Evlogimenos · 20 years ago
  60. 07d7c9d Add a cast by Chris Lattner · 20 years ago
  61. f8083b7 Method now returns null, dtor is inlined by Chris Lattner · 20 years ago
  62. da6cdfa Fix infinite loop gccld'ing povray by Chris Lattner · 20 years ago
  63. e253cf6 bug 122: by Reid Spencer · 20 years ago