diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-02-17 01:56:57 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-02-17 01:56:57 +0000 |
commit | e13037046a0ca2444a63a3bf29a6ee125af41f1c (patch) | |
tree | 1f0f53c0086bafa76d8783969f4a553cb0f12930 | |
parent | de547c6a23cd0aa85f3b722472943d5352b04a49 (diff) | |
download | bcm5719-llvm-e13037046a0ca2444a63a3bf29a6ee125af41f1c.tar.gz bcm5719-llvm-e13037046a0ca2444a63a3bf29a6ee125af41f1c.zip |
update revision in CHANGELOG.TXT and fix python error
llvm-svn: 295399
-rw-r--r-- | libcxx/lib/abi/CHANGELOG.TXT | 4 | ||||
-rw-r--r-- | libcxx/utils/libcxx/sym_check/extract.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/lib/abi/CHANGELOG.TXT b/libcxx/lib/abi/CHANGELOG.TXT index 233d4a7dc6c..1cd79fbd20a 100644 --- a/libcxx/lib/abi/CHANGELOG.TXT +++ b/libcxx/lib/abi/CHANGELOG.TXT @@ -134,8 +134,8 @@ Version 4.0 Symbol added: _ZTSSt12bad_any_cast Symbol added: _ZTVSt12bad_any_cast -* rTBD - Remove basic_string::insert and basic_string::replace template methods - which should be inline. +* r295398 - Remove basic_string::insert and basic_string::replace template methods + which should be inline. These functions should never have had visible definitions in the dylib but since they were previously not specified with 'inline' they accidentally diff --git a/libcxx/utils/libcxx/sym_check/extract.py b/libcxx/utils/libcxx/sym_check/extract.py index cc060f94c96..152ff97db17 100644 --- a/libcxx/utils/libcxx/sym_check/extract.py +++ b/libcxx/utils/libcxx/sym_check/extract.py @@ -49,7 +49,7 @@ class NMExtractor(object): parsed symbols. """ cmd = [self.nm_exe] + self.flags + [lib] - out, _, exit_code = util.executeCommandVerbose(cmd) + out, _, exit_code = libcxx.util.executeCommandVerbose(cmd) if exit_code != 0: raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib)) fmt_syms = (self._extract_sym(l) |