mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 03:56:16 +08:00
Fix uninitialized variable warning. NFCI.
This also fixes a scan-build "array subscript is undefined" warning. llvm-svn: 360128
This commit is contained in:
@@ -5316,7 +5316,7 @@ SDValue PPCDAGToDAGISel::combineToCMPB(SDNode *N) {
|
||||
SDValue V = Queue.pop_back_val();
|
||||
|
||||
for (const SDValue &O : V.getNode()->ops()) {
|
||||
unsigned b;
|
||||
unsigned b = 0;
|
||||
uint64_t M = 0, A = 0;
|
||||
SDValue OLHS, ORHS;
|
||||
if (O.getOpcode() == ISD::OR) {
|
||||
|
||||
Reference in New Issue
Block a user