summaryrefslogtreecommitdiffstats
path: root/clang/lib/Rewrite/Frontend/FrontendActions.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make clang's rewrite engine a core featureAlp Toker2014-07-161-192/+0
| | | | | | | | | | | | | | | The rewrite facility's footprint is small so it's not worth going to these lengths to support disabling at configure time, particularly since key compiler features now depend on it. Meanwhile the Objective-C rewriters have been moved under the ENABLE_CLANG_ARCMT umbrella for now as they're comparatively heavy and still potentially worth excluding from lightweight builds. Tests are now passing with any combination of feature flags. The flags historically haven't been tested by LLVM's build servers so caveat emptor. llvm-svn: 213171
* [C++11] Use 'nullptr'.Craig Topper2014-05-071-4/+4
| | | | llvm-svn: 208163
* [C++11] Add 'override' keyword to virtual methods that override their base ↵Craig Topper2014-03-151-3/+3
| | | | | | class. llvm-svn: 203999
* [C++11] Replace OwningPtr include with <memory>.Ahmed Charles2014-03-091-1/+1
| | | | llvm-svn: 203389
* Replace OwningPtr with std::unique_ptr.Ahmed Charles2014-03-071-2/+2
| | | | | | This compiles cleanly with lldb/lld/clang-tools-extra/llvm. llvm-svn: 203279
* Use llvm::sys::fs::createTemporaryFile.Rafael Espindola2013-07-051-6/+4
| | | | llvm-svn: 185717
* objective-C modern translator. Generate #lineFariborz Jahanian2013-02-081-1/+3
| | | | | | | info in the translated code under -g only. // rdar://13138170 llvm-svn: 174684
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-041-5/+5
| | | | | | | | | | | | | 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
* Split library clangRewrite into clangRewriteCore and clangRewriteFrontend.Ted Kremenek2012-09-011-0/+192
This is similar to how we divide up the StaticAnalyzer libraries to separate core functionality to what is clearly associated with Frontend actions. llvm-svn: 163050
OpenPOWER on IntegriCloud