https://bugs.webkit.org/show_bug.cgi?id=163384
Reviewed by Brent Fulgham.
Fix use of potentially uninitialized variable.
* dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::compile):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@207289
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-10-13 Per Arne Vollan <pvollan@apple.com>
+
+ [Win64] Compile fix.
+ https://bugs.webkit.org/show_bug.cgi?id=163384
+
+ Reviewed by Brent Fulgham.
+
+ Fix use of potentially uninitialized variable.
+
+ * dfg/DFGSpeculativeJIT64.cpp:
+ (JSC::DFG::SpeculativeJIT::compile):
+
2016-10-12 Chris Dumez <cdumez@apple.com>
[Web IDL] Drop support for legacy [ConstructorConditional=*]
GPRTemporary result(this);
Optional<GPRTemporary> temp;
- GPRReg tempGPR;
+ GPRReg tempGPR = InvalidGPRReg;
if (node->child1().useKind() == CellUse) {
temp = GPRTemporary(this);
tempGPR = temp->gpr();