diff options
author | Eric Fiselier <eric@efcs.ca> | 2015-03-27 06:04:37 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2015-03-27 06:04:37 +0000 |
commit | e6bcc4252e02b9b8778b5bd1b89f8f2a2d60c15f (patch) | |
tree | b27a5fa20283ad8359e47a2d9cf76d52d2ec8316 | |
parent | 7041fb1c131f1f4fac595b5c6702d204f5b3bf53 (diff) | |
download | bcm5719-llvm-e6bcc4252e02b9b8778b5bd1b89f8f2a2d60c15f.tar.gz bcm5719-llvm-e6bcc4252e02b9b8778b5bd1b89f8f2a2d60c15f.zip |
cleanup comments in sym_check
llvm-svn: 233364
-rw-r--r-- | libcxx/utils/sym_check/sym_check/extract.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/utils/sym_check/sym_check/extract.py b/libcxx/utils/sym_check/sym_check/extract.py index d28464025b7..b4f4cee2dc5 100644 --- a/libcxx/utils/sym_check/sym_check/extract.py +++ b/libcxx/utils/sym_check/sym_check/extract.py @@ -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: |