summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-mcmarkup/llvm-mcmarkup.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove llvm-mcmarkup.Eric Christopher2018-04-021-223/+0
| | | | | | It was never used and I've checked with the original authors. llvm-svn: 329029
* Fix more inconsistent line endings. NFC.Dimitry Andric2017-12-181-6/+6
| | | | llvm-svn: 321016
* Remove redundant includes from tools.Michael Zolotukhin2017-12-131-2/+0
| | | | llvm-svn: 320631
* Add llvm::for_each as a range-based extensions to <algorithm> and make use ↵Aaron Ballman2017-11-031-7/+6
| | | | | | of it in some cases where it is a more clear alternative to std::for_each. llvm-svn: 317356
* Search for llvm-symbolizer binary in the same directory as argv[0], beforeRichard Smith2016-06-091-1/+1
| | | | | | | looking for it along $PATH. This allows installs of LLVM tools outside of $PATH to find the symbolizer and produce pretty backtraces if they crash. llvm-svn: 272232
* Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using ↵David Blaikie2014-08-211-3/+4
| | | | | | std::unique_ptr llvm-svn: 216223
* Update the MemoryBuffer API to use ErrorOr.Rafael Espindola2014-07-061-4/+5
| | | | llvm-svn: 212405
* Remove 'using std::error_code' from tools.Rafael Espindola2014-06-131-2/+1
| | | | llvm-svn: 210876
* Don't use 'using std::error_code' in include/llvm.Rafael Espindola2014-06-121-0/+1
| | | | | | This should make sure that most new uses use the std prefix. llvm-svn: 210835
* Remove system_error.h.Rafael Espindola2014-06-121-1/+1
| | | | | | | This is a minimal change to remove the header. I will remove the occurrences of "using std::error_code" in a followup patch. llvm-svn: 210803
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-061-2/+1
| | | | | | | | | | 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
* [C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles2014-03-051-1/+1
| | | | llvm-svn: 202957
* MC: Simple example parser for MC assembly markup.Jim Grosbach2012-10-311-0/+225
Nothing fancy, just a simple demonstration parser. llvm-svn: 167181
OpenPOWER on IntegriCloud