Age | Commit message (Expand) | Author |
2012-12-21 | Remove duplicate includes. | Roman Divacky |
2012-12-11 | Extend stat query APIs to explicitly specify if the query is for | Argyrios Kyrtzidis |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-09-16 | Fix dead store found by static analyzer. | Ted Kremenek |
2012-09-06 | Dont cast away const needlessly. Found by gcc48 -Wcast-qual. | Roman Divacky |
2012-08-17 | Switch PTH format from a 7 byte magic number to an 8 byte one, to avoid | Richard Smith |
2012-02-05 | Basic: import OwningPtr<> into clang namespace | Dylan Noblesmith |
2011-09-25 | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie |
2011-09-22 | Simplify the last character check. | David Blaikie |
2011-09-19 | Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. | Argyrios Kyrtzidis |
2011-09-04 | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-04-15 | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner |
2011-02-28 | Rename tok::eom to tok::eod. | Peter Collingbourne |
2010-12-16 | MemoryBuffer API update. | Michael J. Spencer |
2010-12-09 | Use error_code instead of std::string* for MemoryBuffer. | Michael J. Spencer |
2010-11-23 | change the 'is directory' indicator to be a null-or-not | Chris Lattner |
2010-11-23 | simplify the cache miss handling code, eliminating CacheMissing. | Chris Lattner |
2010-11-23 | rework the stat cache, pulling it out of FileManager.h into | Chris Lattner |
2010-11-23 | don't allow remapping PTH file paths with -fworking-directory, the | Chris Lattner |
2010-11-23 | now the FileManager has a FileSystemOpts ivar, stop threading | Chris Lattner |
2010-11-23 | tidy up | Chris Lattner |
2010-11-03 | Implement -working-directory. | Argyrios Kyrtzidis |
2010-08-12 | Don't emit end-of-file diagnostics like "unterminated conditional" or | Douglas Gregor |
2010-07-27 | Add PTHLexer::LexEndOfFile() to emit diagnostics at end-of-file similar to th... | Ted Kremenek |
2010-03-12 | Switch over IdentifierInfoLookup to StringRef | Kovarththanan Rajaratnam |
2009-11-28 | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer |
2009-11-28 | Cleanup llvm/Support/Compiler.h include in header files | Kovarththanan Rajaratnam |
2009-11-12 | Switch PTHManager to using diagnostics for most errors. | Daniel Dunbar |
2009-11-10 | Add Diagnostic::Report method for reporting diagnostics without a location. | Daniel Dunbar |
2009-10-18 | Move clients to use IdentifierInfo::getNameStart() instead of getName() | Daniel Dunbar |
2009-10-17 | Switch to llvm::HashString. | Daniel Dunbar |
2009-10-16 | Add support for a chain of stat caches in the FileManager, rather than | Douglas Gregor |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-08-23 | Replace cerr with errs(). | Benjamin Kramer |
2009-04-20 | Move the on-disk hash table code into its own header. No functionality change. | Douglas Gregor |
2009-03-22 | PTHManager::Create(): | Ted Kremenek |
2009-03-21 | Add back warning about a PTH file not containing any identifiers, but don't make | Ted Kremenek |
2009-03-21 | Allow PTH files with no identifiers. | Ted Kremenek |
2009-03-20 | PTHManager::Create() now creates a PTHManager even if the PTH file contains no | Ted Kremenek |
2009-03-19 | Add PTHManager::getOriginalSourceFile(), a method that returns the name of the | Ted Kremenek |
2009-02-23 | Move PTHStatCache within the anonymous namespace. | Ted Kremenek |
2009-02-19 | Fix another PTH warning that should not be a note. | Ted Kremenek |
2009-02-19 | Make PTH warnings actual warnings instead of 'notes'. | Ted Kremenek |
2009-02-13 | PTH: Cache directory and negative 'stat' calls. This gives us a 1% performan... | Ted Kremenek |
2009-02-13 | Add some boilerplate to the PTH file to prepare for the caching of stats for ... | Ted Kremenek |
2009-02-13 | Fix gcc warning: gcc correctly notes that const-qualifying the return | Eli Friedman |
2009-02-12 | Fix assertion when input is an empty string. | Daniel Dunbar |
2009-02-12 | Re-enable PTH stat caching. All tests pass now. | Ted Kremenek |
2009-02-12 | Fix bad reading of bytes in ReadUnalignedLE64() (copy-paste error). | Ted Kremenek |