aboutsummaryrefslogtreecommitdiff
path: root/utils/findsym.pl
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-08-09 19:40:13 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-08-09 19:40:13 +0000
commita7465cafebda1ad8e0a1c280a294b13d5d9c9740 (patch)
tree714e0bd2ed878dec4e79c71a87d472574c1c6785 /utils/findsym.pl
parenta1ab92d8b7c2d4ca0ab35b372c8eb7b66a5cbf64 (diff)
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29590 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/findsym.pl')
-rwxr-xr-xutils/findsym.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/findsym.pl b/utils/findsym.pl
index 31dd8b2f1f..92346572fe 100755
--- a/utils/findsym.pl
+++ b/utils/findsym.pl
@@ -5,14 +5,13 @@
# Synopsis: Generate a list of the libraries in which a symbol is defined or
# referenced.
#
-# Syntax: GenLibDeps.pl <directory_with_libraries_in_it> <symbol>
+# Syntax: findsym.pl <directory_with_libraries_in_it> <symbol>
#
# Give first option a name.
my $Directory = $ARGV[0];
my $Symbol = $ARGV[1];
-
# Open the directory and read its contents, sorting by name and differentiating
# by whether its a library (.a) or an object file (.o)
opendir DIR,$Directory;