Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Inline function into only use. | Rafael Espindola | 2015-07-08 | 1 | -12/+6 | |
| | | | | llvm-svn: 241692 | |||||
* | Add a helper function to reduce a bit of code duplication. | Rafael Espindola | 2015-07-08 | 1 | -25/+22 | |
| | | | | llvm-svn: 241691 | |||||
* | Use a range loop. NFC. | Rafael Espindola | 2015-07-08 | 1 | -8/+6 | |
| | | | | llvm-svn: 241685 | |||||
* | [ArchiveWriter] Use EndianStream. No functional change intended. | Benjamin Kramer | 2015-06-17 | 1 | -9/+4 | |
| | | | | llvm-svn: 239913 | |||||
* | Don't use std::errc. | Rafael Espindola | 2015-06-13 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | | As noted on Errc.h: // * std::errc is just marked with is_error_condition_enum. This means that // common patters like AnErrorCode == errc::no_such_file_or_directory take // 4 virtual calls instead of two comparisons. And on some libstdc++ those virtual functions conclude that ------------------------ int main() { std::error_code foo = std::make_error_code(std::errc::no_such_file_or_directory); return foo == std::errc::no_such_file_or_directory; } ------------------------- should exit with 0. llvm-svn: 239683 | |||||
* | Fix Windows build. | Peter Collingbourne | 2015-06-08 | 1 | -0/+4 | |
| | | | | llvm-svn: 239279 | |||||
* | llvm-ar: Move archive writer to Object. | Peter Collingbourne | 2015-06-08 | 1 | -0/+338 | |
No functional change intended, other than some minor changes to certain diagnostics. Differential Revision: http://reviews.llvm.org/D10296 llvm-svn: 239278 |