| Commit message (Expand) | Author | Age | Files | Lines |
* | Change "const static" to "static const", as warned about | Duncan Sands | 2009-09-06 | 1 | -2/+2 |
* | Mark more constants unsigned, as warned about by icc (#68). | Duncan Sands | 2009-09-06 | 1 | -1/+1 |
* | Public and private corrections, warned about by icc (#304). | Duncan Sands | 2009-09-06 | 1 | -1/+2 |
* | Remove unneeded declaration, as warned about by | Duncan Sands | 2009-09-06 | 1 | -3/+0 |
* | Revert 80959. It isn't sufficient to solve the full problem. And it | Dan Gohman | 2009-09-03 | 3 | -9/+9 |
* | Remove the API for creating ConstantExprs with the nsw, nuw, inbounds, | Dan Gohman | 2009-09-03 | 3 | -9/+9 |
* | back out my recent commit (r80858), it seems to break self-hosting buildbot's... | Gabor Greif | 2009-09-03 | 1 | -24/+6 |
* | re-commit r66920 (which has been backed out in r66953) I may have more luck t... | Gabor Greif | 2009-09-03 | 1 | -6/+24 |
* | Add convenience functions for reading in LLVM IR that autodetect | Dan Gohman | 2009-09-02 | 1 | -0/+117 |
* | Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. | Sandeep Patel | 2009-09-02 | 1 | -2/+3 |
* | hopefully unbreak the build by making this-> explicit for dependent | Chris Lattner | 2009-08-30 | 1 | -1/+1 |
* | Add regular expression matching support, based on OpenBSD regexec()/regcomp() | Torok Edwin | 2009-08-30 | 1 | -0/+64 |
* | some minor cleanups to IRBuilder, factor the insertion | Chris Lattner | 2009-08-30 | 1 | -24/+32 |
* | Reapply 79977. | Devang Patel | 2009-08-28 | 1 | -6/+6 |
* | Add MathExtras.h OffsetToAlignment, like RoundUpToAlignment but returns the | Daniel Dunbar | 2009-08-28 | 1 | -0/+7 |
* | eliminate all 80-col violations that I have introduced in my recent checkins ... | Gabor Greif | 2009-08-27 | 2 | -7/+10 |
* | Clean up the minor mess I caused with removing iterator.h. I shall take care ... | Gabor Greif | 2009-08-27 | 2 | -7/+6 |
* | Revert 79977. It causes llvm-gcc bootstrap failures on some platforms. | Devang Patel | 2009-08-26 | 1 | -6/+6 |
* | Eliminate the unused Context argument on one of the ICmpInst and FCmpInst | Dan Gohman | 2009-08-25 | 1 | -2/+2 |
* | Make LLVM command-line tools overwrite their output files without -f. | Dan Gohman | 2009-08-25 | 2 | -7/+6 |
* | Update DebugInfo interface to use metadata, instead of special named llvm.dbg... | Devang Patel | 2009-08-25 | 1 | -6/+6 |
* | Add MemoryBuffer::getBuffer() -> StringRef. | Daniel Dunbar | 2009-08-24 | 1 | -0/+5 |
* | Add missing include (for MSVC). | Daniel Dunbar | 2009-08-24 | 1 | -0/+1 |
* | split raw_os_ostream out to its own header and implementation file. This | Chris Lattner | 2009-08-24 | 2 | -19/+42 |
* | prune the #includes in raw_ostream.h by moving a | Chris Lattner | 2009-08-24 | 1 | -9/+1 |
* | Prune #includes from llvm/Linker.h and llvm/System/Path.h, | Chris Lattner | 2009-08-23 | 1 | -13/+8 |
* | llvm/Support/Streams.h is now dead, zap it. | Chris Lattner | 2009-08-23 | 1 | -91/+0 |
* | eliminate the ostream version of CheckBitcodeOutputToConsole, | Chris Lattner | 2009-08-23 | 1 | -13/+5 |
* | Fix off-by-one in llvm::Format::print. | Daniel Dunbar | 2009-08-23 | 1 | -34/+27 |
* | Fix some refactos for iostream changes (in -Asserts mode). | Daniel Dunbar | 2009-08-23 | 1 | -0/+2 |
* | remove some uses of llvm/Support/Streams.h | Chris Lattner | 2009-08-23 | 1 | -2/+2 |
* | convert LoopInfo.h and GraphWriter.h to use raw_ostream | Chris Lattner | 2009-08-23 | 2 | -50/+18 |
* | eliminate DOUT and make Debug.h not include Streams.h anymore, woo! | Chris Lattner | 2009-08-23 | 1 | -20/+5 |
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 3 | -4/+2 |
* | Change raw_fd_ostream to take flags as an optional bitmask | Chris Lattner | 2009-08-23 | 1 | -10/+23 |
* | switch formattedstream to use raw_ostream::indent. This eliminates | Chris Lattner | 2009-08-22 | 1 | -5/+0 |
* | add a raw_ostream::indent method, to be used like: | Chris Lattner | 2009-08-22 | 1 | -0/+4 |
* | Fix a bug where the DWARF emitter in the JIT was not initializing alignment | Reid Kleckner | 2009-08-21 | 1 | -0/+1 |
* | Add some comments clarifying what appear to be the intent of various | Dan Gohman | 2009-08-20 | 1 | -2/+12 |
* | Switch IRBuilder to using Twine references for names. | Daniel Dunbar | 2009-08-19 | 1 | -111/+118 |
* | Unbreak GetBufferSize() on uninitialized streams. This fixes a problem | Dan Gohman | 2009-08-19 | 1 | -1/+1 |
* | Change raw_svector_ostream to reserve the input buffer if necessary, Ted was | Daniel Dunbar | 2009-08-19 | 1 | -2/+6 |
* | Switch raw_svector_ostream to use the vector as the ostream buffer. | Daniel Dunbar | 2009-08-19 | 1 | -0/+4 |
* | Reapply my less-lock-contention-in-leak-detector patch, now with new files | Owen Anderson | 2009-08-19 | 1 | -3/+3 |
* | Revert my last patch temporarily. | Owen Anderson | 2009-08-19 | 1 | -3/+3 |
* | Privatize part of the leak detector mechanism, which turned out to be heavily... | Owen Anderson | 2009-08-19 | 1 | -3/+3 |
* | raw_ostream: Remove pointless redefinitions of tell(). | Daniel Dunbar | 2009-08-19 | 1 | -12/+0 |
* | raw_ostream: Add the capability for subclasses to manually install an external | Daniel Dunbar | 2009-08-18 | 1 | -10/+49 |
* | raw_ostream: Reduce FormattedStream's reliance on raw_ostream's implementation. | Daniel Dunbar | 2009-08-18 | 2 | -9/+9 |
* | Revert r78924, disabling buffering defeats all the fast paths in raw_ostream. | Daniel Dunbar | 2009-08-18 | 1 | -4/+6 |