- Aug 21, 2013
-
-
Argyrios Kyrtzidis authored
Follow up to r188850. llvm-svn: 188854
-
Argyrios Kyrtzidis authored
This should fix the bogus ambiguous reference errors reported by gcc 4.2.1 that the FreeBSD bot is using. llvm-svn: 188850
-
Eli Friedman authored
llvm-svn: 188835
-
- Aug 20, 2013
-
-
Hans Wennborg authored
llvm-svn: 188833
-
Michael Gottesman authored
llvm-svn: 188763
-
Michael Gottesman authored
llvm-svn: 188759
-
- Aug 19, 2013
-
-
Dmitri Gribenko authored
llvm-svn: 188678
-
- Aug 18, 2013
-
-
Dmitri Gribenko authored
llvm-svn: 188625
-
NAKAMURA Takumi authored
llvm-svn: 188621
-
- Aug 17, 2013
-
-
Anton Yartsev authored
llvm-svn: 188607
-
Argyrios Kyrtzidis authored
Per feedback from Chandler, it's better to have libraries with more specific functionality. LibIndex will contain the indexing functionality of libclang, which includes USR generation. llvm-svn: 188601
-
- Aug 16, 2013
-
-
Benjamin Kramer authored
Replace some DenseMap keys with simpler structures that don't need another DenseMapInfo specialization. llvm-svn: 188580
-
Argyrios Kyrtzidis authored
Libclang has a lot of functionality that is inaccessible. The purpose of clangIDE is to move most of the functionality of libclang to it so we can expose it and have libclang be more of a thin C wrapper over clangIDE. Start by moving the USR generation functionality into clangIDE. llvm-svn: 188569
-
- Aug 10, 2013
-
-
Enea Zaffanella authored
llvm-svn: 188134
-
- Aug 08, 2013
-
-
Stefanus Du Toit authored
Also bump the minor version number and update libclang.exports. Reviewed by: Dmitri Gribenko, Doug Gregor llvm-svn: 187994
-
Hans Wennborg authored
There hasn't been a separate cc1 option table since r155916. llvm-svn: 187993
-
Jordan Rose authored
llvm-svn: 187989
-
- Aug 06, 2013
-
-
Larisse Voufo authored
Started implementing variable templates. Top level declarations should be fully supported, up to some limitations documented as FIXMEs or TODO. Static data member templates work very partially. Static data member templates of class templates need particular attention... llvm-svn: 187762
-
- Aug 02, 2013
-
-
Alexey Samsonov authored
llvm-svn: 187647
-
- Aug 01, 2013
-
-
Rafael Espindola authored
This unifies the unix and windows versions of FileManager::UniqueDirContainer and FileManager::UniqueFileContainer by using UniqueID. We cannot just replace "struct stat" with llvm::sys::fs::file_status, since we want to be able to construct fake ones, and file_status has different members on unix and windows. What the patch does is: * Record only the information that clang is actually using. * Use llvm::sys::fs::status instead of stat and fstat. * Use llvm::sys::fs::UniqueID * Delete the old windows versions of UniqueDirContainer and UniqueFileContainer since the "unix" one now works on windows too. llvm-svn: 187619
-
Daniel Jasper authored
Patch by Mark Lodato. Thank you! llvm-svn: 187592
-
- Jul 26, 2013
-
-
Bob Wilson authored
When BUILD_CLANG_ONLY is set to YES, it is supposed to simply limit the tools that get built. The change in r184794 broke this feature by moving libclang and c-index-test into PARALLEL_DIRS. Those are both supposed to be in DIRS, because c-index-test has a build dependency on libclang and cannot be reliably built in parallel with it. llvm-svn: 187246
-
- Jul 25, 2013
-
-
David Blaikie authored
Use the same filtering for assembly arguments to -cc1as as we do for -cc1, this allows a consistent (& more useful) diagnostic experience for users (rather than getting an error from -cc1as (which a user shouldn't really be thinking about) about --foo, they get an error from clang about --foo in -Wa,) I'm sort of surprised by the separation of -cc1as & the separate argument handling, etc, but at least this removes a little bit of the duplication. llvm-svn: 187156
-
- Jul 23, 2013
-
-
Rafael Espindola authored
llvm-svn: 186983
-
Argyrios Kyrtzidis authored
Patch by Che-Liang Chiou! llvm-svn: 186967
-
- Jul 22, 2013
-
-
Enea Zaffanella authored
llvm-svn: 186872
-
Daniel Jasper authored
After the first operation, the buffer contents has changed and thus all other operations would be invalid. Executing the operations in reversed order should fix this. llvm-svn: 186840
-
NAKAMURA Takumi authored
warning: initializer for aggregate is not a compile-time constant [-Wc99-extensions] llvm-svn: 186833
-
Daniel Jasper authored
llvm-svn: 186825
-
- Jul 21, 2013
-
-
Daniel Jasper authored
With this fix, only changed regions will be replaced in vim's buffer. Thereby, marks should mostly be left intact. Furthermore, this is a better fix for the performance problem in conjunction with 'foldmethod=syntax' (see r186660). llvm-svn: 186789
-
- Jul 20, 2013
-
-
Alexander Kornienko authored
Use -lines option instead of -offset/-length. This fixes problems with files using dos newlines (<CR><LF>). llvm-svn: 186740
-
- Jul 19, 2013
-
-
Hans Wennborg authored
The mode doesn't actually do anything yet, but this provides a way to get into it. llvm-svn: 186720
-
Daniel Jasper authored
The previous line-by-line replacement causes vim to take a long time if the foldmethod is set to 'syntax'. This should significantly improve performance in that case. llvm-svn: 186660
-
Alexey Bataev authored
llvm-svn: 186647
-
Alexander Kornienko authored
Added -lines X:Y option to specify line range to process. This is a more human-friendly alternative to -offset and -length. Differential Revision: http://llvm-reviews.chandlerc.com/D1160 llvm-svn: 186625
-
- Jul 18, 2013
-
-
Hans Wennborg authored
and add a new option --driver-mode= to control it explicitly. The CCCIsCXX and CCCIsCPP flags were non-overlapping, i.e. there are currently really three modes that Clang can run in: gcc, g++ or cpp, so it makes sense to represent them as an enum. Having a command line flag to control it helps testing. llvm-svn: 186605
-
Reid Kleckner authored
MSBuild writes response files as UTF-16 little endian with a byte order mark. With this change, clang will be able to read them, although we still can't parse any of their flags. Adds a UTF-16-LE response file with a BOM for testing. Differential Revision: http://llvm-reviews.chandlerc.com/D1137 llvm-svn: 186603
-
- Jul 16, 2013
-
-
Rafael Espindola authored
llvm-svn: 186448
-
- Jul 15, 2013
-
-
Craig Topper authored
llvm-svn: 186305
-
Craig Topper authored
llvm-svn: 186302
-