summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm/Support/StreamableMemoryObject.h
Commit message (Collapse)AuthorAgeFilesLines
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-071-1/+1
| | | | llvm-svn: 205697
* [C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.Craig Topper2014-03-101-16/+13
| | | | llvm-svn: 203442
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-061-2/+3
| | | | | | | | | | This compiles with no changes to clang/lld/lldb with MSVC and includes overloads to various functions which are used by those projects and llvm which have OwningPtr's as parameters. This should allow out of tree projects some time to move. There are also no changes to libs/Target, which should help out of tree targets have time to move, if necessary. llvm-svn: 203083
* Switch all uses of LLVM_OVERRIDE to just use 'override' directly.Craig Topper2014-03-021-11/+11
| | | | llvm-svn: 202621
* Remove the Copied parameter from MemoryObject::readBytes.Benjamin Kramer2013-05-241-11/+7
| | | | | | | | | | There was exactly one caller using this API right, the others were relying on specific behavior of the default implementation. Since it's too hard to use it right just remove it and standardize on the default behavior. Defines away PR16132. llvm-svn: 182636
* Fix include guards so they exactly match file names.Jakub Staszak2013-01-101-2/+2
| | | | llvm-svn: 172025
* Sort the #include lines for the include/... tree with the script.Chandler Carruth2012-12-031-1/+1
| | | | | | | | | | AKA: Recompile *ALL* the source code! This one went much better. No manual edits here. I spot-checked for silliness and grep-checked for really broken edits and everything seemed good. It all still compiles. Yell if you see something that looks goofy. llvm-svn: 169133
* Add LLVM_OVERRIDE to methods that override their base classes.Craig Topper2012-09-231-7/+8
| | | | llvm-svn: 164471
* Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment ↵Craig Topper2012-09-161-2/+3
| | | | | | operators that aren't implemented. llvm-svn: 164006
* Make MemoryObject accessor members const againDerek Schuff2012-02-291-17/+17
| | | | llvm-svn: 151687
* Fix PR12089Derek Schuff2012-02-271-1/+1
| | | | | | http://llvm.org/bugs/show_bug.cgi?id=12089 llvm-svn: 151550
* Fix comment-rulers.Nick Lewycky2012-02-061-1/+1
| | | | llvm-svn: 149922
* Enable streaming of bitcodeDerek Schuff2012-02-061-0/+181
This CL delays reading of function bodies from initial parse until materialization, allowing overlap of compilation with bitcode download. llvm-svn: 149918
OpenPOWER on IntegriCloud