oota-llvm.git
2003-07-25 Chris LattnerThis test has been automatized
2003-07-25 Chris LattnerUpdate to use more modern graph checker
2003-07-25 Chris LattnerNew testcase, an automatized version of Vikrams ggcolla...
2003-07-25 Vikram S. Adve1. Fix a case that was marking the invalid reg. num...
2003-07-25 Vikram S. Adve(1) Change the way unused regs. are marked and found...
2003-07-25 Vikram S. AdveChange the way unused regs. are marked and found to...
2003-07-25 Vikram S. AdveRemove unused field. Change the way unused regs. are...
2003-07-25 Vikram S. AdveAdd an assertion.
2003-07-25 Chris LattnerRemove testcase which has been automatized
2003-07-25 Chris LattnerCheckin of Vikram's ggfuncptr.c test adapted for automa...
2003-07-25 Chris LattnerDont' try to parse the colon
2003-07-25 Chris LattnerAdd a more general check-flags which can be used to...
2003-07-25 Brian GaekeInclude llvm/Support/Mangler.h first. Don't include...
2003-07-25 Brian GaekeDon't include llvm/SlotCalculator.h, or <set>.
2003-07-25 Brian GaekeForward-declare class Module to make the header file...
2003-07-25 Chris LattnerMore cassert inclusion for GCC 3.3
2003-07-25 Chris LattnerChange reference to assert.h to mention cassert
2003-07-25 Chris LattnerBrian implemented the static compiler, take it off...
2003-07-25 Chris Lattner#include <cassert> as necessary...
2003-07-25 Chris LattnerFix another accessibility problem illuminated by GCC 3.3
2003-07-25 Chris LattnerFix visibility problem exposed by GCC 3.3
2003-07-25 Chris LattnerRemove inline declarations that GCC 3.3 doesn't like...
2003-07-25 Chris LattnerRegardless of whether C provides assert.h, C++ source...
2003-07-25 Chris LattnerUse the C++ <cassert> header, not the C <assert.h>...
2003-07-25 Chris LattnerThis header works with GCC 3.3
2003-07-25 Chris LattnerUse C++ headers, not C headers
2003-07-25 Chris LattnerAdd includes of assert
2003-07-25 Chris LattnerFix accessibility problems GCC 3.3
2003-07-25 Chris LattnerAdd assert.h include
2003-07-25 Chris LattnerConvert to C++ style comments
2003-07-25 Vikram S. AdveInclude vector into these two files to ensure that...
2003-07-24 Misha BrukmanMade a bunch of cleanups, as per Chris' recommendations:
2003-07-24 Brian GaekeCleanups:
2003-07-24 Brian GaekeFactor out name-mangling from X86/Printer, which is...
2003-07-24 Brian GaekeUse unified CWriter-X86/Printer name mangler. Do not...
2003-07-24 Chris LattnerMore testcases, which I'll implement later
2003-07-24 Chris LattnerModernize testcase
2003-07-24 Chris LattnerNew testcase
2003-07-24 Chris LattnerInstcombine: (A >> c1) << c2 for signed integers
2003-07-24 Chris LattnerNew testcases for signed shifts
2003-07-24 Misha BrukmanMajor addition to bugpoint: ability to debug code gener...
2003-07-24 Chris LattnerReorganization of code, no functional changes.
2003-07-24 Brian GaekeIt doesn't appear that we need to #include these.
2003-07-24 Chris LattnerAllow folding several instructions into casts, which...
2003-07-24 Chris LattnerMinor cleanups
2003-07-24 Brian GaekeConstify most methods. We could have constified doIniti...
2003-07-23 Chris LattnerDisable sample project until it works
2003-07-23 Chris LattnerAdd new tests, make existing tests more difficult
2003-07-23 Chris LattnerFix bug: FunctionResolve/2003-07-23-CPR-Reference.ll
2003-07-23 Chris LattnerNew testcase
2003-07-23 Chris LattnerAdd comments
2003-07-23 Chris LattnerRemove explicit check for: not (not X) = X, it is alrea...
2003-07-23 Chris LattnerNew testcases
2003-07-23 Chris LattnerRenumber tests sequentially
2003-07-23 Chris LattnerSplit the or and xor tests into two separate files
2003-07-23 Chris LattnerRemove obscure test
2003-07-23 Chris LattnerCheck in old testcase sitting in my tree
2003-07-23 Chris LattnerFix program: SingleSource/UnitTests/2003-07-09-SignedAr...
2003-07-23 Brian GaekePrinter.cpp: Ditch addRequired/getAnalysis, because...
2003-07-23 Chris LattnerMake Module::getNamedFunction prefer non-external funct...
2003-07-23 Chris LattnerFix space
2003-07-23 Chris LattnerInstCombine: (X ^ C1) & C2 --> (X & C2) iff (C1&C2...
2003-07-23 Chris LattnerNew testcase
2003-07-23 Chris Lattner - InstCombine: (X | C1) & C2 --> X & C2 iff C1 &...
2003-07-23 Chris LattnerNew testcase
2003-07-23 Chris LattnerNew testcase
2003-07-23 Brian GaekeAdd, rewrite, and/or reformat many comments.
2003-07-23 Chris LattnerIC: (X & C1) | C2 --> (X | C2) & (C1|C2)
2003-07-23 Chris LattnerNew testcases
2003-07-23 Chris LattnerIC: (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
2003-07-23 Chris LattnerNew testcase
2003-07-23 Chris LattnerInstCombine: (X ^ 4) == 8 --> X == 12
2003-07-23 Chris LattnerNew testcase
2003-07-23 Chris LattnerAdd support for ~ operator on constants
2003-07-23 Chris LattnerIC: (X & 5) == 13 --> false
2003-07-23 Chris LattnerNew tests
2003-07-23 John CriswellRenamed libtool to mklib for your tab completion pleasure.
2003-07-23 Chris LattnerRemove redundant const qualifier
2003-07-23 Chris LattnerRemove redundant const qualifiers from cast<> expressions
2003-07-23 Chris LattnerSimplify code by using ConstantInt::getRawValue instead...
2003-07-23 Chris LattnerRemove unnecessary casts
2003-07-23 Chris LattnerFit code into 80 columns
2003-07-23 Chris LattnerEliminate old-style cast
2003-07-23 Chris LattnerRandom cleanups
2003-07-23 Chris LattnerRemove using decl
2003-07-23 Chris LattnerRemove explicit const qualifiers
2003-07-23 Chris LattnerAdd more doxygen comments, add new ConstantInt::getRawV...
2003-07-23 Chris LattnerFix bug: TailDup/2003-07-22-InfiniteLoop.ll
2003-07-23 Chris LattnerNew testcase that caused infinite loop in taildup
2003-07-22 Chris Lattner - InstCombine (cast (xor A, B) to bool) ==> (setne...
2003-07-22 Chris LattnerNew testcases
2003-07-22 John CriswellRepaired the --enable and --disable options.
2003-07-22 John CriswellFixed the enable/disable options. The AC_ARG_ENABLE...
2003-07-22 Brian GaekeAdd documentation for runOnMachineFunction()
2003-07-22 John CriswellMade some corrections to the enable-llc_diffs option.
2003-07-22 John CriswellGenerated a new configure script.
2003-07-22 John CriswellUpdated to use files within the autoconf subdirectory.
2003-07-22 John CriswellThese are the autoconf files in their new home.
2003-07-22 John CriswellMoving these files to the llvm/autoconf directory.
2003-07-22 John CriswellMoved configure.ac to the autoconf directory.
next