Both MSVC and cppcheck don't like the fact that the variables are initialized via references.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365018
91177308-0d34-0410-b5e6-
96231b3b80d8
// a half by taking the sum of the half with three inputs and subtracting
// the sum of the actual three inputs. The difference is the remaining
// slot.
- int ADWord, BDWord;
+ int ADWord = 0, BDWord = 0;
int &TripleDWord = ThreeAInputs ? ADWord : BDWord;
int &OneInputDWord = ThreeAInputs ? BDWord : ADWord;
int TripleInputOffset = ThreeAInputs ? AOffset : BOffset;