Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [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 |