mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 06:29:05 +00:00
Silence an overzealous uninitialized variable warning from GCC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130053 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1608,7 +1608,7 @@ SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
|
|||||||
if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
|
if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
unsigned ShlOp, Op;
|
unsigned ShlOp, Op = 0;
|
||||||
EVT CstVT = NVT;
|
EVT CstVT = NVT;
|
||||||
|
|
||||||
// Check the minimum bitwidth for the new constant.
|
// Check the minimum bitwidth for the new constant.
|
||||||
|
Reference in New Issue
Block a user