tests: Force another triple.
[oota-llvm.git] / test / Transforms / JumpThreading /
2010-07-15 Chris LattnerFix PR7647, handling the case when 'To' ends up being
2010-07-12 Chris Lattnerif jump threading is able to infer interesting values...
2010-06-14 Chris Lattnerjump threading can't split a critical edge from an...
2010-04-10 Chris Lattnerfix PR6743, a case where we'd delete an instruction...
2010-02-15 Chris Lattnerfix PR6305 by handling BlockAddress in a helper function
2010-02-11 Chris LattnerMake jump threading honor x|undef -> true and x&undef...
2010-01-23 Chris Lattnerthird bug from PR6119: the xor dupe extension allows
2010-01-23 Chris Lattneradd an early out to ProcessBranchOnXOR to speed it up,
2010-01-23 Chris Lattnerfix a crash in jump threading, PR6119
2010-01-12 Chris Lattner1) Use the new SimplifyInstructionsInBlock routine...
2010-01-12 Chris LattnerTeach jump threading to duplicate small blocks when...
2009-12-06 Chris Lattnerfix PR5698
2009-12-01 Chris Lattnerfix PR5640 by tracking whether a block is the header...
2009-11-12 Gabor Greiftypo
2009-11-12 Chris Lattneruse getPredicateOnEdge to fold comparisons through...
2009-11-12 Chris Lattnershould not commit when distracted.
2009-11-12 Chris LattnerWe now thread some impossible condition information...
2009-11-12 Chris Lattnerwith the new code we can thread non-instruction values...
2009-11-12 Chris Lattnermove some stuff into DEBUG's and turn on lazy-value...
2009-11-11 Chris Lattneroops, didn't mean to commit this, no harm, but add...
2009-11-11 Chris LattnerStub out a new lazy value info pass, which will eventually
2009-11-10 Chris Lattnerimplement a TODO by teaching jump threading about ...
2009-11-10 Chris LattnerMake jump threading eliminate blocks that just contain...
2009-11-10 Chris Lattnermake jump threading recursively simplify expressions...
2009-11-07 Chris Lattnerreapply 86289, 86278, 86270, 86267, 86266 & 86264 plus...
2009-11-07 Devang PatelRevert following patches to fix llvmgcc bootstrap.
2009-11-06 Chris LattnerFix a problem discovered on self host.
2009-11-06 Chris LattnerExtend jump threading to support much more general...
2009-11-05 Chris Lattnermerge a few crash tests into crash.ll
2009-10-24 Dan GohmanMake these tests more interesting by using
2009-10-20 Chris Lattneralternate fix for PR5258 which avoids worklist problems...
2009-10-20 Torok EdwinFix PR5258, jump-threading creating invalid PHIs.
2009-10-11 Chris Lattnerwhen folding duplicate conditions, delete the
2009-10-11 Chris Lattnerimplement a transformation in jump threading that is...
2009-10-11 Chris Lattneranother testcase jump threading shouldn't crash on.
2009-10-11 Chris Lattnerrename a file, remove a poorly reduced testcase.
2009-10-11 Chris Lattnermake jump threading on a phi with undef inputs happen.
2009-10-11 Chris Lattnermerge two tests.
2009-10-11 Chris Lattnersimplify some run lines, convert a test to filecheck.
2009-09-11 Dan GohmanChange tests from "opt %s" to "opt < %s" so that opt...
2009-09-09 Dan GohmanEliminate more uses of llvm-as and llvm-dis.
2009-09-08 Dan GohmanUse opt -S instead of piping bitcode output through...
2009-09-08 Dan GohmanChange these tests to feed the assembly files to opt...
2009-06-19 Chris Lattnermake jump threading handle lexically identical compare...
2009-06-19 Nick LewyckyTeach jump threading to look at comparisons between...
2009-05-04 Mike StumpRestore minor deletion.
2009-01-19 Chris LattnerFix PR3353, infinitely jump threading an infinite loop...
2009-01-09 Chris LattnerFix PR3298, a crash in Jump Threading. Apparently...
2008-12-03 Chris Lattnertestcase for br undef folding.
2008-12-03 Chris LattnerTeach jump threading some more simple tricks:
2008-11-28 Chris Lattnerdon't call MergeBasicBlockIntoOnlyPred on a block whose...
2008-11-27 Chris LattnerFix PR3138: if we merge the entry block into another...
2008-11-27 Chris LattnerMake jump threading substantially more powerful, in...
2008-05-05 Chris LattnerFix a crash when threading a block that includes a...
2008-04-25 Chris LattnerDon't infininitely thread branches when a threaded...
2008-04-22 Chris LattnerStart doing the significantly useful part of jump threa...
2008-04-22 Chris LattnerDig through multiple levels of AND to thread jumps...
2008-04-22 Chris LattnerTeach jump threading to thread through blocks like:
2008-04-22 Chris Lattneradd a basic testcase.