Skip to content

Commit 2729786

Browse files
committed
llvm-strings: ensure that the last string is correctly printed
We would ignore the last string that appeared if the file ended with a printable character. Ensure that we get the last string. llvm-svn: 286706
1 parent 4dcf92a commit 2729786

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
RUN: echo -n abc | llvm-strings - | FileCheck -allow-empty %s
2+
CHECK-NOT: abc
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
RUN: echo -n abcdefg | llvm-strings - | FileCheck %s
2+
CHECK: abcdefg

llvm/tools/llvm-strings/llvm-strings.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ static cl::list<std::string> InputFileNames(cl::Positional,
3333
cl::ZeroOrMore);
3434

3535
static void dump(raw_ostream &OS, StringRef Contents) {
36-
const char *S = nullptr;
37-
for (const char *P = Contents.begin(), *E = Contents.end(); P < E; ++P) {
36+
const char *P = nullptr, *E = nullptr, *S = nullptr;
37+
for (P = Contents.begin(), E = Contents.end(); P < E; ++P) {
3838
if (std::isgraph(*P) || std::isblank(*P)) {
3939
if (S == nullptr)
4040
S = P;
@@ -44,6 +44,8 @@ static void dump(raw_ostream &OS, StringRef Contents) {
4444
S = nullptr;
4545
}
4646
}
47+
if (S && E - S > 3)
48+
OS << StringRef(S, E - S) << '\n';
4749
}
4850

4951
namespace {

0 commit comments

Comments
 (0)