summaryrefslogtreecommitdiffstats
path: root/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix grammar-o.Bill Wendling2012-12-111-1/+1
| | | | llvm-svn: 169798
* KillTheDoctor.cpp: Restore Win32 SDK headers before r169251.NAKAMURA Takumi2012-12-041-3/+3
| | | | llvm-svn: 169255
* Sort the #include lines for utils/...Chandler Carruth2012-12-041-5/+8
| | | | | | | I've tried to find main moudle headers where possible, but the TableGen stuff may warrant someone else looking at it. llvm-svn: 169251
* Remove dead code. Improve llvm_unreachable text. Simplify some control flow.Ahmed Charles2012-02-191-46/+0
| | | | llvm-svn: 150918
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-5/+5
| | | | | | Luis Felipe Strano Moraes! llvm-svn: 129558
* Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.Michael J. Spencer2010-12-181-1/+1
| | | | llvm-svn: 122157
* Revert r122143 through r122140, which collectively broke the LLVMC tests onOwen Anderson2010-12-181-1/+1
| | | | | | the buildbots. llvm-svn: 122149
* Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.Michael J. Spencer2010-12-181-1/+1
| | | | llvm-svn: 122141
* KillTheDoctor: Cleanup error_code usage.Michael J. Spencer2010-12-061-18/+14
| | | | llvm-svn: 120986
* KillTheDoctor: Fix spelling.Michael J. Spencer2010-12-061-6/+6
| | | | llvm-svn: 120985
* Merge System into Support.Michael J. Spencer2010-11-291-2/+2
| | | | llvm-svn: 120298
* This is the first step in adding sane error handling support to LLVMSystem.Michael J. Spencer2010-11-161-1/+1
| | | | | | | | | | | | | | | | | The system API's will be shifted over to returning an error_code, and returning other return values as out parameters to the function. Code that needs to check error conditions will use the errc enum values which are the same as the posix_errno defines (EBADF, E2BIG, etc...), and are compatable with the error codes in WinError.h due to some magic in system_error. An example would be: if (error_code ec = KillEvil("Java")) { // error_code can be converted to bool. handle_error(ec); } llvm-svn: 119360
* Add KillTheDoctor.Michael J. Spencer2010-10-111-0/+600
llvm-svn: 116216
OpenPOWER on IntegriCloud