aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/DependencyGraph.cpp
AgeCommit message (Collapse)AuthorFilesLines
2015-06-22Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").Alexander Kornienko1-1/+1
llvm-svn: 240353
2015-06-22Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-1/+1
The patch is generated using this command: $ tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \ -checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \ work/llvm/tools/clang To reduce churn, not touching namespaces spanning less than 10 lines. llvm-svn: 240270
2014-09-10Unique_ptrify PPCallbacks ownership.Craig Topper1-1/+2
Unique_ptr creation stil needs to be moved earlier at some of the call sites. llvm-svn: 217474
2014-08-25Update for llvm api change.Rafael Espindola1-5/+5
llvm-svn: 216397
2014-05-22[C++11] Use 'nullptr'. Frontend edition.Craig Topper1-1/+1
llvm-svn: 209389
2014-03-13[C++11] Add 'override' keyword to virtual methods that override their base ↵Craig Topper1-10/+6
class. llvm-svn: 203758
2014-02-24Update for llvm api change.Rafael Espindola1-1/+1
llvm-svn: 202053
2014-02-24Don't assume that F_None is the default. It is about to change.Rafael Espindola1-1/+1
llvm-svn: 202040
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko1-7/+6
brought into 'clang' namespace by clang/Basic/LLVM.h llvm-svn: 172323
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth1-1/+1
uncovered. This required manually correcting all of the incorrect main-module headers I could find, and running the new llvm/utils/sort_includes.py script over the files. I also manually added quite a few missing headers that were uncovered by shuffling the order or moving headers up to be main-module-headers. llvm-svn: 169237
2012-09-29For PPCallbacks::InclusionDirective() add a parameter for the module, wheneverArgyrios Kyrtzidis1-2/+4
an inclusion directive was automatically turned into a module import, and PPCallbacks::moduleImport() for an explicit module import. llvm-svn: 164874
2012-09-27Per discussion in ↵Argyrios Kyrtzidis1-2/+2
http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20120917/064551.html have PPCallbacks::InclusionDirective pass the character range for the filename quotes or brackets. rdar://11113134 & http://llvm.org/PR13880 llvm-svn: 164743
2012-02-02Rename -dependency-graphviz to -dependencncy-dotDouglas Gregor1-1/+2
llvm-svn: 149645
2012-02-02Introduce a -cc1 option "-dependency-graphviz" that determines headerDouglas Gregor1-0/+139
dependencies and outputs them in GraphViz format. llvm-svn: 149575