| Commit message (Expand) | Author | Age | Files | Lines |
* | remove attribution from a variety of miscellaneous files. | Chris Lattner | 2007-12-29 | 37 | -74/+74 |
* | regenerate | Chris Lattner | 2007-12-29 | 8 | -5038/+6699 |
* | remove attributions | Chris Lattner | 2007-12-29 | 5 | -10/+10 |
* | Bindings for instruction calling conventions. | Gordon Henriksen | 2007-12-29 | 5 | -2/+44 |
* | remove attributions from tools. | Chris Lattner | 2007-12-29 | 48 | -96/+96 |
* | remove attributions from examples. | Chris Lattner | 2007-12-29 | 7 | -14/+14 |
* | remove attributions from utils. | Chris Lattner | 2007-12-29 | 36 | -72/+72 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 548 | -1292/+1451 |
* | remove attributions from the rest of the llvm makefiles. | Chris Lattner | 2007-12-29 | 26 | -52/+52 |
* | remove attribution from lib Makefiles. | Chris Lattner | 2007-12-29 | 35 | -71/+71 |
* | remove attributions from tools/utils makefiles. | Chris Lattner | 2007-12-29 | 28 | -56/+56 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 253 | -506/+506 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 2 | -30/+12 |
* | this is done. | Chris Lattner | 2007-12-29 | 1 | -7/+0 |
* | One readme entry is done, one is really easy (Evan, want to investigate | Chris Lattner | 2007-12-29 | 2 | -77/+35 |
* | upgrade this test | Chris Lattner | 2007-12-29 | 1 | -8/+9 |
* | Fold comparisons against a constant nan, and optimize ORD/UNORD | Chris Lattner | 2007-12-29 | 3 | -17/+33 |
* | this xform is implemented. | Chris Lattner | 2007-12-29 | 2 | -22/+9 |
* | Disable null pointer folding transforms for non-generic address spaces. This ... | Christopher Lamb | 2007-12-29 | 2 | -4/+12 |
* | make sure not to zap volatile stores, thanks a lot to Dale for noticing this! | Chris Lattner | 2007-12-29 | 1 | -1/+2 |
* | Codegen: | Chris Lattner | 2007-12-29 | 2 | -4/+40 |
* | don't fold fp_round(fp_extend(load)) -> fp_round(extload) | Chris Lattner | 2007-12-29 | 1 | -0/+4 |
* | avoid going through a stack slot to convert from fpstack to xmm reg | Chris Lattner | 2007-12-29 | 3 | -29/+54 |
* | Delete a store whose input is a load from the same pointer: | Chris Lattner | 2007-12-29 | 1 | -1/+12 |
* | add a note | Chris Lattner | 2007-12-29 | 1 | -1/+41 |
* | expand note. | Chris Lattner | 2007-12-29 | 1 | -0/+4 |
* | dead calls to llvm.stacksave can be deleted, even though they | Chris Lattner | 2007-12-29 | 2 | -1/+20 |
* | upgrade this test | Chris Lattner | 2007-12-29 | 1 | -11/+12 |
* | Test -simplifycfg only. | Devang Patel | 2007-12-28 | 1 | -46/+23 |
* | add a note. | Chris Lattner | 2007-12-28 | 1 | -0/+32 |
* | add a note. | Chris Lattner | 2007-12-28 | 1 | -0/+32 |
* | Add a testcase for my recent InstCombine fix, written by Nicholas. | Owen Anderson | 2007-12-28 | 1 | -0/+89 |
* | Repair a transform that Chris noticed a bug in. Thanks to Nicholas for point... | Owen Anderson | 2007-12-28 | 1 | -5/+12 |
* | disable this instcombine xform, it miscompiles: | Chris Lattner | 2007-12-28 | 1 | -0/+2 |
* | add a note | Chris Lattner | 2007-12-28 | 1 | -0/+19 |
* | Ignore functions with internal linkages during linking. This snipped mimics the | Anton Korobeynikov | 2007-12-27 | 1 | -0/+3 |
* | Adding bindings for target triple and data layout. | Gordon Henriksen | 2007-12-27 | 6 | -0/+98 |
* | Switch the bindings to use LLVMFoldingBuilder. | Gordon Henriksen | 2007-12-27 | 2 | -9/+9 |
* | Adding an uninitialized builder constructor to the Ocaml bindings. | Gordon Henriksen | 2007-12-26 | 3 | -9/+22 |
* | one fewer uncond branch with my codegenprepare hack for single-mbb backedges. | Chris Lattner | 2007-12-26 | 1 | -1/+1 |
* | Tests for changes made in r45356, where IPO optimizations would drop | Gordon Henriksen | 2007-12-26 | 2 | -0/+35 |
* | Fixing several transforms which would drop the collector attribute | Gordon Henriksen | 2007-12-25 | 5 | -0/+15 |
* | update to llvm 2.0 syntax. | Chris Lattner | 2007-12-25 | 1 | -2/+2 |
* | Don't break critical edges for single-bb loops, this helps with PR1877, though | Chris Lattner | 2007-12-25 | 1 | -3/+1 |
* | Actually parse q operation in llvm-ar | Seo Sanghyeon | 2007-12-25 | 1 | -0/+1 |
* | Disabling -g for ocaml builds; it's not downwards compatible. | Gordon Henriksen | 2007-12-25 | 1 | -3/+4 |
* | GC poses hazards to the inliner. Consider: | Gordon Henriksen | 2007-12-25 | 3 | -0/+60 |
* | Noting and enforcing that GC intrinsics are valid only within a | Gordon Henriksen | 2007-12-25 | 4 | -33/+56 |
* | Adjusting verification of "llvm.gc*" intrinsic prototypes to match | Gordon Henriksen | 2007-12-25 | 5 | -27/+82 |
* | Flesh out the Briggs implementation a little bit more, fix a few FIXMEs. | Owen Anderson | 2007-12-24 | 1 | -11/+35 |