Fix uninitialized local build break
authorBruce Forstall <brucefo@microsoft.com>
Tue, 13 Sep 2016 05:47:50 +0000 (22:47 -0700)
committerBruce Forstall <brucefo@microsoft.com>
Tue, 13 Sep 2016 05:47:50 +0000 (22:47 -0700)
[tfs-changeset: 1626936]

src/jit/codegenxarch.cpp

index 9c9218434d7f007f51c9c8b47ab879b4a309efa5..e39fcf155502ea5ac5add593ecd65d262b7f8cf0 100644 (file)
@@ -1316,8 +1316,8 @@ void CodeGen::genCodeForDivMod(GenTreeOp* treeNode)
 
 #ifdef _TARGET_X86_
     bool dividendIsLong = varTypeIsLong(dividend->TypeGet());
-    GenTree* dividendLo;
-    GenTree* dividendHi;
+    GenTree* dividendLo = nullptr;
+    GenTree* dividendHi = nullptr;
 
     if (dividendIsLong)
     {