[libcxx] r233364 - cleanup comments in sym_check
Eric Fiselier
eric at efcs.ca
Thu Mar 26 23:04:37 PDT 2015
Author: ericwf
Date: Fri Mar 27 01:04:37 2015
New Revision: 233364
URL: http://llvm.org/viewvc/llvm-project?rev=233364&view=rev
Log:
cleanup comments in sym_check
Modified:
libcxx/trunk/utils/sym_check/sym_check/extract.py
Modified: libcxx/trunk/utils/sym_check/sym_check/extract.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/sym_check/sym_check/extract.py?rev=233364&r1=233363&r2=233364&view=diff
==============================================================================
--- libcxx/trunk/utils/sym_check/sym_check/extract.py (original)
+++ libcxx/trunk/utils/sym_check/sym_check/extract.py Fri Mar 27 01:04:37 2015
@@ -16,7 +16,7 @@ class NMExtractor(object):
@staticmethod
def find_tool():
"""
- Search for the nm executable and return the path and type.
+ Search for the nm executable and return the path.
"""
return distutils.spawn.find_executable('nm')
@@ -93,20 +93,20 @@ class NMExtractor(object):
class ReadElfExtractor(object):
"""
- NMExtractor - Extract symbol lists from libraries using nm.
+ ReadElfExtractor - Extract symbol lists from libraries using readelf.
"""
@staticmethod
def find_tool():
"""
- Search for the nm executable and return the path and type.
+ Search for the readelf executable and return the path.
"""
return distutils.spawn.find_executable('readelf')
def __init__(self):
"""
- Initialize the nm executable and flags that will be used to extract
- symbols from shared libraries.
+ Initialize the readelf executable and flags that will be used to
+ extract symbols from shared libraries.
"""
self.tool = self.find_tool()
if self.tool is None:
More information about the cfe-commits
mailing list