This is a replacement to binutils' string tool. It prints strings found in a
binary (object file, executable, or archive library). It is rather bare and
not functionally equivalent, however, it lays the groundwork necessary for the
strings tool, enabling iterative development of features to reach feature
parity.
Details
Details
- Reviewers
mclow.lists echristo
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Couple of inline comments. Don't bother putting it back up for review if you just make the changes :)
-eric
tools/llvm-strings/llvm-strings.cpp | ||
---|---|---|
38 | Lower case. Also probably worth just making this a static helper function rather than a class member for StringRef and only have class functions that take object files/archives/etc. | |
46 | Perhaps have it take a stream instead? |
Lower case. Also probably worth just making this a static helper function rather than a class member for StringRef and only have class functions that take object files/archives/etc.