Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add test macros for always_inline and noinline | Eric Fiselier | 2018-10-10 | 1 | -1/+3 |
| | | | | llvm-svn: 344167 | ||||
* | Update Google Benchmark library | Eric Fiselier | 2018-01-18 | 1 | -2/+2 |
| | | | | llvm-svn: 322812 | ||||
* | [locale] Avoid copy of __atoms when char_type is char | Aditya Kumar | 2017-06-14 | 1 | -0/+38 |
The function num_get<_CharT>::stage2_int_prep makes unnecessary copy of src into atoms when char_type is char. This can be avoided by creating a switch on type and just returning __src when char_type is char. Added the test case to demonstrate performance improvement. In order to avoid ABI incompatibilities, the changes are guarded with a macro _LIBCPP_ABI_OPTIMIZED_LOCALE_NUM_GET Differential Revision: https://reviews.llvm.org/D30268 Reviewed by: EricWF llvm-svn: 305427 |