summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-02-17 01:56:57 +0000
committerEric Fiselier <eric@efcs.ca>2017-02-17 01:56:57 +0000
commit43ec7b868c362099a4d3c6427a81abd5c1dc2fec (patch)
tree9ec2ecf2e183468d14f16782fafec6c7e6be3d1f
parent25380e401c15e78501a09f23987b9e0b27865df1 (diff)
downloadexternal_libcxx-43ec7b868c362099a4d3c6427a81abd5c1dc2fec.tar.gz
external_libcxx-43ec7b868c362099a4d3c6427a81abd5c1dc2fec.tar.bz2
external_libcxx-43ec7b868c362099a4d3c6427a81abd5c1dc2fec.zip
update revision in CHANGELOG.TXT and fix python error
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@295399 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/abi/CHANGELOG.TXT4
-rw-r--r--utils/libcxx/sym_check/extract.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/abi/CHANGELOG.TXT b/lib/abi/CHANGELOG.TXT
index 233d4a7dc..1cd79fbd2 100644
--- a/lib/abi/CHANGELOG.TXT
+++ b/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/utils/libcxx/sym_check/extract.py b/utils/libcxx/sym_check/extract.py
index cc060f94c..152ff97db 100644
--- a/utils/libcxx/sym_check/extract.py
+++ b/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)