Moved llvm/lib/Support to llvm/support/lib/Support.
[oota-llvm.git] / lib / VMCore /
2003-06-02 Chris Lattner* Make assertion message useful
2003-06-02 Chris LattnerFix bug: Linker/2003-06-02-TypeResolveProblem.ll
2003-06-01 Chris LattnerDon't print out unique identifier for opaque types
2003-05-27 Chris LattnerFix constant folding to ALWAYS work.
2003-05-25 Chris LattnerFix problem with last checkin.
2003-05-23 Chris LattnerFix Bug: Linker/2003-04-26-NullPtrLinkProblem.ll
2003-05-22 Chris LattnerRemove using declarations and extraneous #includes
2003-05-22 Chris LattnerFix static constructor ordering problem
2003-05-22 Chris LattnerRemove using declarations
2003-05-21 Chris LattnerAdd support for shift constant expressions
2003-05-20 Misha Brukmans/convertable/convertible/g
2003-05-17 Chris LattnerAdd support for setjmp/longjmp primitives
2003-05-15 Chris LattnerFix bug: Assembler/2003-05-15-AssemblerProblem.llx
2003-05-15 Chris LattnerFix Bug: Linker/2003-05-15-TypeProblem.ll
2003-05-14 Chris LattnerRemove unnecessary casts
2003-05-14 Chris LattnerPrint opaque types
2003-05-14 Chris LattnerFix major problem with appending linkage changes
2003-05-14 Chris LattnerFix bug
2003-05-13 Chris LattnerImplement another getelementptr folding opportunity...
2003-05-13 Chris LattnerEliminate using declarations
2003-05-13 Chris LattnerImplement linkage of appending global variables!
2003-05-12 Chris LattnerFix bug: Dominators/2003-05-12-UnreachableCode.ll
2003-05-12 Chris LattnerFix Bug: ConstProp/2003-05-12-DivideError.ll
2003-05-08 Chris Lattnerllvm.va_start only takes on argument now
2003-05-08 Chris LattnerAdd more support for intrinsic functions and for vararg...
2003-05-08 Chris LattnerAdd support for the new va_arg instruction
2003-05-08 Chris LattnerRemove using declarations
2003-04-25 Chris LattnerFix a bug that occurred when removing the last predeces...
2003-04-25 Chris Lattner** CORRECTLY, conservatively handle constant expressions
2003-04-25 Chris Lattner*** Huge: Make constantexprs be handled correctly,...
2003-04-24 Chris LattnerFix a nasty bug where the ConstantMerge pass was invali...
2003-04-23 Chris LattnerFix Bug: Linker/2003-04-23-LinkOnceLost.ll
2003-04-23 Chris LattnerRemove unnecesary &*'s
2003-04-22 Chris LattnerAdd warning when linking modules with disagreeing targe...
2003-04-22 Chris LattnerEmit information about target
2003-04-22 Chris LattnerAdd support for tracking whether a module is 64/32...
2003-04-21 Chris LattnerFix bug: 2003-01-30-LinkerRename.ll
2003-04-21 Chris LattnerFix linking a function with qualifiers to a external...
2003-04-19 Chris LattnerRemove arbitrary limitation
2003-04-17 Chris LattnerDon't build constantexprs that could be folded
2003-04-17 Chris LattnerAllow constant folding of GEP instructions, even if...
2003-04-17 Chris LattnerDon't force a ConstantPointer to be returned
2003-04-16 Chris LattnerChange the interface to constant expressions to allow...
2003-04-16 Chris LattnerAdd code to verify correctly linkages
2003-04-16 Chris LattnerAdd new linkage types to support a real frontend
2003-04-16 Chris LattnerImprove the efficiency and cleanup writing a bit
2003-03-21 Chris LattnerAdd helper method
2003-03-19 Chris Lattner* Change the order that globals and constants are proce...
2003-03-10 Chris LattnerFix ConstantUInt::isAllOnesValue
2003-03-06 Chris LattnerClean up cruft
2003-03-06 Chris LattnerRemove #include
2003-03-05 Chris LattnerSimplify some of the PHI node interfaces
2003-02-26 Chris LattnerAllow ImmutablePass's to require other immutable passes...
2003-02-14 Chris LattnerFix a misunderstanding of the standard associative...
2003-02-13 Chris LattnerThis speeds up processing LLVM a _lot_, 17% in the...
2003-02-01 Chris LattnerSimplify assertions
2003-02-01 Joel StanleyAdded implementation of alternate CallInst constructors...
2003-01-30 Chris Lattner* Fix linking of opaque types and their non-opaque...
2003-01-30 Chris LattnerEliminate using decls
2003-01-14 Chris LattnerFix bug Regression/Verifier/2002-11-05-GetelementptrPoi...
2003-01-14 Chris LattnerMake type resolution a bit more efficient
2002-12-15 Chris LattnerFix bug: Assembler/2002-12-15-GlobalResolve.ll
2002-12-15 Chris Lattnerplanes is not spelled with an O
2002-12-03 Chris LattnerFix big bug introduced with symbol table changes
2002-11-21 Chris LattnerUser defined operators are not supposed to live beyond...
2002-11-20 Chris Lattner - Eliminated the deferred symbol table stuff in Modul...
2002-11-20 Chris LattnerEliminate the concept of a deferred symbol table. ...
2002-11-19 Chris LattnerAdd a new Module::getNamedFunction method
2002-11-08 Chris LattnerAdd a method "getMainFunction()" that efficiently locat...
2002-10-31 Chris LattnerFix nasty bug in ::isNeg()
2002-10-31 Chris LattnerCan simplify code now with the isCommutative() method.
2002-10-31 Chris LattnerNew isAssociative/isCommutative inspection methods...
2002-10-29 Misha BrukmanFix spelling of `propagate'.
2002-10-21 Chris Lattner - Rename AnalysisUsage::preservesAll to getPreservesA...
2002-10-15 Chris Lattner - Eliminate SymbolTable::ParentSymTab, ST::localLooku...
2002-10-14 Chris Lattner - Dramatically simplify the Constant::mutateReference...
2002-10-14 Chris LattnerMinor cleanups, no changes to functionality
2002-10-13 Chris Lattner - Change Function's so that their argument list is...
2002-10-13 Chris Lattner - Rename Instruction::First*Op to *OpsBegin, and...
2002-10-09 Chris Lattner - Make Value::replaceAllUsesWith work with constants...
2002-10-09 Chris Lattner - Add new Constant::replaceUsesOfWithOnConstant which...
2002-10-09 Chris Lattner - Remove Value::use_remove
2002-10-08 Chris LattnerFix NASTY N^2 behavior that was causing the gzip benchm...
2002-10-08 Chris LattnerFix bug: Assembler/2002-10-08-LargeArrayPerformance...
2002-10-08 Chris LattnerChanges to support PHINode::removeIncoming changes
2002-10-08 Chris Lattner - Change PHINode::removeIncomingValue to delete the...
2002-10-08 Chris LattnerExpose new "recalculate" method from dominatorset
2002-10-06 Chris LattnerGlobal variables are now external if they don't have...
2002-10-06 Chris LattnerCheck that we don't have external varaibles with intern...
2002-10-06 Chris LattnerPHI nodes are not allowed to exist with zero incoming...
2002-10-04 Chris LattnerFix a nasty problem with dominance calculation for...
2002-10-02 Chris Lattner - Print the predecessors of a basic block instead...
2002-10-01 Chris LattnerMake sure to use the TimerGroup that we created!
2002-10-01 Chris LattnerMake sure not to count the PassManager wrapers
2002-10-01 Chris LattnerFactor timer code out of PassManager implementation...
2002-09-29 Chris LattnerFix a problem that was caused by stale analyses being...
2002-09-29 Chris LattnerImprove printing of dominator sets
2002-09-26 Chris Lattner - Add methods to ImmediateDominators & DominatorTree...
2002-09-26 Chris Lattner - Add new ctor to BasicBlock to allow insertion befor...
2002-09-25 Chris Lattner* Fix ugly bug in previous checkin where I reused the...
next