summaryrefslogtreecommitdiff
path: root/tools/llvm-nm
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2012-06-06 23:34:10 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2012-06-06 23:34:10 +0000
commit4d616646966b9effa05472ff3575fc3ce4df2b29 (patch)
treefe0cc987e9c8765cfb6d5eac4b451c18350fc424 /tools/llvm-nm
parent1f9c3ec831cf63f7833680c38362c1e92c251aff (diff)
downloadllvm-4d616646966b9effa05472ff3575fc3ce4df2b29.tar.gz
llvm-4d616646966b9effa05472ff3575fc3ce4df2b29.tar.bz2
llvm-4d616646966b9effa05472ff3575fc3ce4df2b29.tar.xz
[llvm-nm] Update documentation to cover object file support and arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158120 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-nm')
-rw-r--r--tools/llvm-nm/llvm-nm.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/llvm-nm/llvm-nm.cpp b/tools/llvm-nm/llvm-nm.cpp
index 8d9e51e56e..9afbd4db90 100644
--- a/tools/llvm-nm/llvm-nm.cpp
+++ b/tools/llvm-nm/llvm-nm.cpp
@@ -7,12 +7,12 @@
//
//===----------------------------------------------------------------------===//
//
-// This program is a utility that works like traditional Unix "nm",
-// that is, it prints out the names of symbols in a bitcode file,
-// along with some information about each symbol.
+// This program is a utility that works like traditional Unix "nm", that is, it
+// prints out the names of symbols in a bitcode or object file, along with some
+// information about each symbol.
//
-// This "nm" does not print symbols' addresses. It supports many of
-// the features of GNU "nm", including its different output formats.
+// This "nm" supports many of the features of GNU "nm", including its different
+// output formats.
//
//===----------------------------------------------------------------------===//