diff options
| author | Louis Dionne <ldionne@apple.com> | 2018-09-23 21:10:06 +0000 |
|---|---|---|
| committer | Louis Dionne <ldionne@apple.com> | 2018-09-23 21:10:06 +0000 |
| commit | 436a40128cea3b0db084dcb91223e5395de74782 (patch) | |
| tree | 19d3fc17d3c6c8e74797c40868522a6dcc444525 | |
| parent | 6d95a8521f6ebaee61091dbe07c23c8f88a7f52c (diff) | |
| download | bcm5719-llvm-436a40128cea3b0db084dcb91223e5395de74782.tar.gz bcm5719-llvm-436a40128cea3b0db084dcb91223e5395de74782.zip | |
[libcxx] Document new symbols __u64toa and __u32toa on Darwin
Summary:
This is the counterpart for https://reviews.llvm.org/D50130 and
https://reviews.llvm.org/D52391 on Darwin.
Reviewers: EricWF
Subscribers: christof, dexonsmith, cfe-commits, libcxx-commits, lichray
Differential Revision: https://reviews.llvm.org/D52396
llvm-svn: 342849
| -rw-r--r-- | libcxx/lib/abi/CHANGELOG.TXT | 3 | ||||
| -rw-r--r-- | libcxx/lib/abi/x86_64-apple-darwin.v1.abilist | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libcxx/lib/abi/CHANGELOG.TXT b/libcxx/lib/abi/CHANGELOG.TXT index 8ae38ecce79..4c9a5974685 100644 --- a/libcxx/lib/abi/CHANGELOG.TXT +++ b/libcxx/lib/abi/CHANGELOG.TXT @@ -27,6 +27,9 @@ Version 7.0 x86_64-apple-darwin16.0 ----------------------- + Symbol added: __ZNSt3__16__itoa8__u64toaEyPc + Symbol added: __ZNSt3__16__itoa8__u32toaEjPc + * r333467 - Fix embarrasing typo in uncaught_exceptions. diff --git a/libcxx/lib/abi/x86_64-apple-darwin.v1.abilist b/libcxx/lib/abi/x86_64-apple-darwin.v1.abilist index 1be950f2e54..6d011616d73 100644 --- a/libcxx/lib/abi/x86_64-apple-darwin.v1.abilist +++ b/libcxx/lib/abi/x86_64-apple-darwin.v1.abilist @@ -1282,6 +1282,8 @@ {'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__15wcerrE', 'size': 0} {'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__15wclogE', 'size': 0} {'type': 'OBJECT', 'is_defined': True, 'name': '__ZNSt3__15wcoutE', 'size': 0} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__16__itoa8__u32toaEjPc'} +{'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__16__itoa8__u64toaEyPc'} {'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__16__sortIRNS_6__lessIaaEEPaEEvT0_S5_T_'} {'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__16__sortIRNS_6__lessIccEEPcEEvT0_S5_T_'} {'type': 'FUNC', 'is_defined': True, 'name': '__ZNSt3__16__sortIRNS_6__lessIddEEPdEEvT0_S5_T_'} |

