mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +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:
parent
83eb906906
commit
20115617d4
@ -1608,7 +1608,7 @@ SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
|
||||
if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
|
||||
break;
|
||||
|
||||
unsigned ShlOp, Op;
|
||||
unsigned ShlOp, Op = 0;
|
||||
EVT CstVT = NVT;
|
||||
|
||||
// Check the minimum bitwidth for the new constant.
|
||||
|
Loading…
Reference in New Issue
Block a user