1. e4d5c44 This mega patch converts us from using Function::a{iterator|begin|end} to by Chris Lattner · 19 years ago
  2. b9476d9 Eliminate silly warnings from the linker of the form: by Chris Lattner · 19 years ago
  3. e6f8c5a Allow globals to be of different const'nesses when we link. by Chris Lattner · 19 years ago
  4. 0ba9e21 Make LinkModules a static member function by Reid Spencer · 20 years ago
  5. 152f19a Make sure to link the target-triple as well, so it ends up in the .llvm.bc file by Chris Lattner · 20 years ago
  6. d37a75b Revert this disgusting hack, John has a much nicer solution by Chris Lattner · 20 years ago
  7. a6a2bdd Add a disgusting hack to work around a libstdc++ issue. This code should by Chris Lattner · 20 years ago
  8. c8ef1ed Fix linkage of mismatched weak globals. This unbreaks 300.twolf by Chris Lattner · 20 years ago
  9. aee38ea Significantly rework linker support for global variables, allowing it to by Chris Lattner · 20 years ago
  10. 719012d Remove blank comment lines for uniformity. Make sure lines don't exceed 80 cols. by Reid Spencer · 20 years ago
  11. a63acbf Don't increment a dead iterator by Chris Lattner · 20 years ago
  12. 0033baf Simplify the remapper by only needing one map, since the body of the functions by Chris Lattner · 20 years ago
  13. 4bbfbff Take advantage of the fact that we are allowed to clobber the input module by Chris Lattner · 20 years ago
  14. 242e525 The second arg may be clobbered by this function by Chris Lattner · 20 years ago
  15. 7cc371a Linker.h moved to include/llvm from include/llvm/Support. by Reid Spencer · 20 years ago
  16. 7f49602 This file originated in lib/VMCore/Linker.cpp but now lives in by Reid Spencer · 20 years ago
  17. 07adb28 Stop propagating method names that violate the coding standard by Reid Spencer · 20 years ago
  18. b976e66 Add support for undef and unreachable by Chris Lattner · 20 years ago
  19. d4984cc Make sure the const bit gets inherited correctly when linking declarations by Chris Lattner · 20 years ago
  20. 57a0efa Implement support for dependent libraries. The "source" module's dependent by Reid Spencer · 20 years ago
  21. 72cf7df Fix a nasty bug that Nate ran into. In particular, instead of emitting a 2+MB by Chris Lattner · 20 years ago
  22. aad2deb Fix another minor problem that exists if you ahve multiple functions with by Chris Lattner · 20 years ago
  23. 82b5b21 Fix a typeo by Chris Lattner · 20 years ago
  24. 868bbf3 Fix a major regression in my previous checkin by Chris Lattner · 20 years ago
  25. cc7ba49 Stop using getValues(). by Alkis Evlogimenos · 20 years ago
  26. 5a837de FindGlobalNamed used to take 2.92s out of 8.39s running a profile build of by Chris Lattner · 20 years ago
  27. 7b0c84d I swear I compiled this, really I did. by Chris Lattner · 20 years ago
  28. c003628 Factor some code out, no substantial change. by Chris Lattner · 20 years ago
  29. fe41069 Concisify some code by Chris Lattner · 20 years ago
  30. 47b14a4 Fix #includes of i*.h => Instructions.h as per PR403. by Misha Brukman · 20 years ago
  31. 00dc479 bug 122: by Reid Spencer · 20 years ago
  32. c28a224 - #include <iostream> since its not in Value.h any more. by Reid Spencer · 20 years ago
  33. c837dd9 Linker.h moved to include/llvm/Support by Misha Brukman · 20 years ago
  34. f70c22b Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 20 years ago
  35. 567bc2c Convert to SymbolTable's new lookup and iteration interfaces. by Reid Spencer · 20 years ago
  36. 1438102 Fix linking of constant expr casts due to type resolution changes. With by Chris Lattner · 20 years ago
  37. 57cb988 Fix PR245: Linking weak and strong global variables is dependent on link order by Chris Lattner · 20 years ago
  38. de512b5 Adjustments to support the new ConstantAggregateZero class by Chris Lattner · 20 years ago
  39. c6646eb Remove use of ConstantExpr::getShift by Chris Lattner · 21 years ago
  40. f7703df Finegrainify namespacification by Chris Lattner · 21 years ago
  41. adbc0b5 Spew symbolic types! by Chris Lattner · 21 years ago
  42. d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 21 years ago
  43. d981f8a Further fixes for PR93 by Chris Lattner · 21 years ago
  44. 700867b Checking in Chris's suggestions: by John Criswell · 21 years ago
  45. 3595655 Fix test: Linker/2003-10-27-LinkOncePromote.ll Fix PR58 by Chris Lattner · 21 years ago
  46. aeb18ce Fix bug: Linker/2003-10-21-ConflictingTypesTolerance.ll by Chris Lattner · 21 years ago
  47. f85770c Fix message to make more sense and confuse Chris less by Chris Lattner · 21 years ago
  48. b576c94 Added LLVM project notice to the top of every C++ source file. by John Criswell · 21 years ago
  49. 72ac148d Add support for 'weak' linkage. by Chris Lattner · 21 years ago
  50. cf00c4a Fix spelling. by Misha Brukman · 21 years ago
  51. 841e00b Fix bug where we considered function types equivalent even if they had differing numbers of arguments by Chris Lattner · 21 years ago
  52. 77c5f73 Fix bug: Linker/2003-08-23-GlobalVarLinking.ll by Chris Lattner · 21 years ago
  53. 873c5e7 Implement: Linker/2003-08-24-InheritPtrSize.ll by Chris Lattner · 21 years ago
  54. f44c605 Do not consider any types that exist in the global symbol table! by Chris Lattner · 21 years ago
  55. e3092c9 Fix bug: Linker/2003-08-23-RecursiveOpaqueTypeResolve.ll by Chris Lattner · 21 years ago
  56. fcd0234 Implement Linker/2003-08-23-GlobalVarLinking.ll, which should fix 176.gcc by Chris Lattner · 21 years ago
  57. 9732be7 Fix typeo by Chris Lattner · 21 years ago
  58. 43f4ba8 The process of linking types can cause their addresses to become invalid. For this reason, we must use TypeHandles! by Chris Lattner · 21 years ago
  59. e76c57a Implement Linker/2003-08-20-OpaqueTypeResolve.ll by Chris Lattner · 21 years ago
  60. 4c00e53 Fix Bug: Linker/2003-05-15-TypeProblem.ll by Chris Lattner · 21 years ago
  61. f414646 Fix major problem with appending linkage changes by Chris Lattner · 21 years ago
  62. 8166e6e Implement linkage of appending global variables! by Chris Lattner · 21 years ago
  63. c2b97d4 Fix Bug: Linker/2003-04-23-LinkOnceLost.ll by Chris Lattner · 21 years ago
  64. 43a9994 Add warning when linking modules with disagreeing target properties by Chris Lattner · 21 years ago
  65. 2719bac Fix bug: 2003-01-30-LinkerRename.ll by Chris Lattner · 21 years ago
  66. 0fec08e Fix linking a function with qualifiers to a external function declaration: by Chris Lattner · 21 years ago
  67. 4ad02e7 Add new linkage types to support a real frontend by Chris Lattner · 21 years ago
  68. 2f6bb2b * Fix linking of opaque types and their non-opaque versions by Chris Lattner · 22 years ago
  69. 5c2d335 Eliminate using decls by Chris Lattner · 22 years ago
  70. b91b657 Fix big bug introduced with symbol table changes by Chris Lattner · 22 years ago
  71. 6e6026b - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 22 years ago
  72. 69da5cf - Change Function's so that their argument list is populated when they are by Chris Lattner · 22 years ago
  73. d149c05 Insert resolved constants into the global map so they are reused correctly. by Chris Lattner · 22 years ago
  74. b319faf fixed bug: test/Regression/Linker/2002-08-20-ConstantExpr.ll by Chris Lattner · 22 years ago
  75. ad33348 Remove support for Not ConstantExpr. This simplifies the unary case to only by Chris Lattner · 22 years ago
  76. e8e4605 Cleanup ConstantExpr handling: by Chris Lattner · 22 years ago
  77. ad772a7 Remove FIXME's that aren't really needed after all. by Chris Lattner · 22 years ago
  78. b1443b1 *** empty log message *** by Chris Lattner · 22 years ago
  79. e306d94 * Rewrite loop to be slightly more efficient (arguably) by Chris Lattner · 22 years ago
  80. 6cdf197 Implement linking of ConstExprs by Chris Lattner · 22 years ago
  81. 1896150 *** empty log message *** by Chris Lattner · 22 years ago
  82. c8cc4cb Updates to move some header files out of include/llvm/Transforms into by Chris Lattner · 22 years ago
  83. 31bcdb8 Split ConstantVals.h into Constant.h and Constants.h by Chris Lattner · 22 years ago
  84. 73e2142 Move FunctionArgument out of iOther.h into Argument.h and rename class to by Chris Lattner · 22 years ago
  85. 87182ae Eliminate explicit use of Writer library, using debug dump output instead. by Chris Lattner · 22 years ago
  86. 6bfd6a5 s/Method/Function by Chris Lattner · 22 years ago
  87. 79df7c0 Change references from Method to Function by Chris Lattner · 22 years ago
  88. 9b63801 Cleanup error message output a bit by Chris Lattner · 22 years ago
  89. 221d688 Method.h no longer includes BasicBlock.h by Chris Lattner · 23 years ago
  90. 697954c Changes to build successfully with GCC 3.02 by Chris Lattner · 23 years ago
  91. 7a17675 Renamed inst_const_iterator -> const_inst_iterator by Chris Lattner · 23 years ago
  92. e9bb2df Rename ConstPoolVal -> Constant by Chris Lattner · 23 years ago
  93. e4d25aa Implement support for internal methods by Chris Lattner · 23 years ago
  94. 161aa5a Add #includes to enable buiding in Release mode by Chris Lattner · 23 years ago
  95. 2c236f3 Don't forget to link type names together too. Fix for Olden/mst benchmark by Chris Lattner · 23 years ago
  96. 2d3e8bb Add extra code for debugging linker problems by Chris Lattner · 23 years ago
  97. 43a6f2e Pull method symbols over when linking. Otherwise the result of the link will appear stripped by Chris Lattner · 23 years ago
  98. 2301a07 Remove non linking related stuff by Chris Lattner · 23 years ago
  99. 9466f51 Added name-mangling routines for future use. by Vikram S. Adve · 23 years ago
  100. c2d774b Fix problem linking in a method prototype when a method body exists by Chris Lattner · 23 years ago