summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-05 09:55:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-05 10:00:09 +0200
commitf7cee96168463484cff88cd596cb6e69f1845e52 (patch)
tree72381eb31df949fb617b1557c99adfee93909a90 /tools
parent3dae60c3a8c6de7cd776e7b832f7b55688716150 (diff)
clang-analyzer-deadcode.DeadStores
Change-Id: Iec5a5fe5f14a9dcdbd7644bf67d4a985e42cd957
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/bigint.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index cfc156ecae29..3bd915c69508 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -339,7 +339,6 @@ void BigInt::DivLong( const BigInt& rB, BigInt& rErg ) const
nQ--;
// Start division
nK = 0;
- nTmp = 0;
for (i = 0; i < nLenB; i++)
{
nTmp = (long)aTmpA.nNum[j - nLenB + i]
@@ -407,7 +406,6 @@ void BigInt::ModLong( const BigInt& rB, BigInt& rErg ) const
nQ--;
// Start division
nK = 0;
- nTmp = 0;
for (i = 0; i < nLenB; i++)
{
nTmp = (long)aTmpA.nNum[j - nLenB + i]