diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-07-16 00:00:11 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-07-16 00:00:11 +0000 |
commit | c76c9e0856ff3aa47590474c9404dfb598c0564c (patch) | |
tree | d8a1e2e00005d921bef925759acd6a412abeb87c /lib | |
parent | bf40cb518312dde1c07e44fcae59bc4eec65589c (diff) |
Suppress !+Asserts warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108480 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Frontend/PCHReader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 00aee491d6..9c132f40eb 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -170,6 +170,7 @@ static bool EqualConcatenations(llvm::SmallVector<llvm::StringRef, 2> L, // Do it the hard way. At this point, both vectors must be non-empty. llvm::StringRef LR = L[0], RR = R[0].Data; unsigned LI = 0, RI = 0, LN = L.size(), RN = R.size(); + (void) RN; for (;;) { // Compare the current pieces. if (LR.size() == RR.size()) { |