projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2f01b8
)
Fix uninitialized local build break
author
Bruce Forstall
<brucefo@microsoft.com>
Tue, 13 Sep 2016 05:47:50 +0000
(22:47 -0700)
committer
Bruce Forstall
<brucefo@microsoft.com>
Tue, 13 Sep 2016 05:47:50 +0000
(22:47 -0700)
[tfs-changeset:
1626936
]
src/jit/codegenxarch.cpp
patch
|
blob
|
history
diff --git
a/src/jit/codegenxarch.cpp
b/src/jit/codegenxarch.cpp
index 9c9218434d7f007f51c9c8b47ab879b4a309efa5..e39fcf155502ea5ac5add593ecd65d262b7f8cf0 100644
(file)
--- a/
src/jit/codegenxarch.cpp
+++ b/
src/jit/codegenxarch.cpp
@@
-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)
{