| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove -module, which appears to be a leftover from prior libtool usage. | Dan Gohman | 2010-04-19 | 1 | -7/+0 |
* | This doesn't need SmallVector.h anymore. | Dan Gohman | 2010-04-19 | 1 | -1/+0 |
* | Support .a files directly (without -l). | Mikhail Glushenkov | 2010-04-19 | 1 | -1/+2 |
* | Better error-handling for DisassembleThumb2DPSoReg() where the 3-reg operand | Johnny Chen | 2010-04-19 | 1 | -3/+6 |
* | Fix this for std::vectors which don't have .data(). | Dan Gohman | 2010-04-19 | 1 | -1/+1 |
* | ARM disassembler did not react to recent changes to the NEON instruction table. | Johnny Chen | 2010-04-19 | 2 | -10/+26 |
* | Don't write into MemoryBuffers. | Benjamin Kramer | 2010-04-19 | 5 | -20/+15 |
* | Fix -Wcast-qual warnings. | Dan Gohman | 2010-04-19 | 1 | -6/+10 |
* | Revert 91528 and use a std::vector instead, fixing an abuse of std::string. | Dan Gohman | 2010-04-19 | 1 | -10/+16 |
* | Fix -Wcast-qual warnings. | Dan Gohman | 2010-04-19 | 3 | -6/+11 |
* | Add a few more ELF bits. | Dan Gohman | 2010-04-19 | 1 | -0/+11 |
* | Add a const. | Dan Gohman | 2010-04-19 | 1 | -1/+1 |
* | These functions don't need to access this. | Dan Gohman | 2010-04-19 | 1 | -2/+2 |
* | Add missed part of prev. commit | Anton Korobeynikov | 2010-04-18 | 1 | -1/+2 |
* | Make processor FUs unique for given itinerary. This extends the limit of 32 | Anton Korobeynikov | 2010-04-18 | 15 | -858/+894 |
* | avoid temporary std::string in non posix_spawn path. | Chris Lattner | 2010-04-18 | 1 | -4/+4 |
* | Eliminate temporary string. | Benjamin Kramer | 2010-04-18 | 1 | -4/+4 |
* | Properly inherit the environment on darwin where environ is not available for... | Benjamin Kramer | 2010-04-18 | 1 | -1/+6 |
* | This is horrible. Split the difference, and declare 'environ' on all non-Darwin | Nick Lewycky | 2010-04-18 | 1 | -0/+7 |
* | Revert r101701, Darwin doesn't have 'environ'. Go figure. | Nick Lewycky | 2010-04-18 | 1 | -3/+0 |
* | Fix linux build. posix_spawn doesn't inherit the environment by default. | Nick Lewycky | 2010-04-18 | 1 | -1/+4 |
* | make Program::Execute use posix_spawn on systems that support it, | Chris Lattner | 2010-04-18 | 1 | -9/+64 |
* | reduce indentation | Chris Lattner | 2010-04-18 | 1 | -21/+21 |
* | unnest from namespace. | Chris Lattner | 2010-04-18 | 1 | -5/+1 |
* | silence some -Wmissing-field-initializers warnings. | Chris Lattner | 2010-04-18 | 1 | -2/+2 |
* | silence some unused-value warnings. | Chris Lattner | 2010-04-18 | 1 | -4/+4 |
* | Don't rely upon the MCSymbol "isDefined" method to indicate if a label has been | Bill Wendling | 2010-04-18 | 1 | -2/+2 |
* | Formatting changes. No functionality change. | Bill Wendling | 2010-04-18 | 1 | -29/+28 |
* | Add a "PadTo" field to the emitULEB128Bytes method. This will pad out to the | Bill Wendling | 2010-04-18 | 1 | -2/+9 |
* | Fix declarations in a few more tests. | Nick Lewycky | 2010-04-17 | 4 | -5/+5 |
* | Revert "reject forward references to functions whose type don't match", becau... | Daniel Dunbar | 2010-04-17 | 2 | -5/+1 |
* | Fix intrinsic signature in this test. | Nick Lewycky | 2010-04-17 | 1 | -1/+1 |
* | reject forward references to functions whose type don't match | Chris Lattner | 2010-04-17 | 2 | -1/+5 |
* | Add comment (lost when reverting and reapplying 101503). | Dale Johannesen | 2010-04-17 | 1 | -0/+2 |
* | doh, didn't mean to check in my hackaround lit sucking. :) | Chris Lattner | 2010-04-17 | 1 | -1/+1 |
* | fix PR6332, allowing an index of zero into a zero sized array | Chris Lattner | 2010-04-17 | 2 | -2/+10 |
* | teach the x86 asm parser how to handle segment prefixes | Chris Lattner | 2010-04-17 | 4 | -15/+22 |
* | refactor .if handling code a bit. | Chris Lattner | 2010-04-17 | 2 | -54/+23 |
* | fix PR6858: a dangling pointer use bug which was caused | Chris Lattner | 2010-04-17 | 1 | -1/+8 |
* | a bunch of cleanups and tweaks, no functionality changes. | Chris Lattner | 2010-04-17 | 1 | -42/+48 |
* | Fix more -Wcast-qual warnings. | Dan Gohman | 2010-04-17 | 2 | -2/+2 |
* | Fix -Wcast-qual warnings. | Dan Gohman | 2010-04-17 | 4 | -11/+12 |
* | remove a dead variable, PR6856 | Chris Lattner | 2010-04-17 | 1 | -1/+0 |
* | testcase for r101538, patch by Nico Schmidt! | Chris Lattner | 2010-04-17 | 1 | -0/+3 |
* | Add const qualifiers to TargetLoweringObjectFile usage. | Dan Gohman | 2010-04-17 | 8 | -21/+22 |
* | Use const_cast instead of a C-style cast to cast away const. | Dan Gohman | 2010-04-17 | 2 | -3/+4 |
* | Start function numbering at 0. | Dan Gohman | 2010-04-17 | 35 | -647/+648 |
* | Delete now-unnecessary const_casts. | Dan Gohman | 2010-04-17 | 3 | -12/+11 |
* | Use cast instead of dyn_cast when assuming success. | Dan Gohman | 2010-04-17 | 1 | -6/+6 |
* | Use const qualifiers with TargetLowering. This eliminates several | Dan Gohman | 2010-04-17 | 70 | -692/+757 |