Title: [156067] trunk/Source/_javascript_Core
Revision
156067
Author
bfulg...@apple.com
Date
2013-09-18 15:36:05 -0700 (Wed, 18 Sep 2013)

Log Message

[Windows] Unreviewed build fix after r156064.

* jsc.cpp:
(jscmain): Need a temporary to perform '&' in VS2010.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (156066 => 156067)


--- trunk/Source/_javascript_Core/ChangeLog	2013-09-18 22:26:09 UTC (rev 156066)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-09-18 22:36:05 UTC (rev 156067)
@@ -1,3 +1,10 @@
+2013-09-18  Brent Fulgham  <bfulg...@apple.com>
+
+        [Windows] Unreviewed build fix after r156064.
+
+        * jsc.cpp:
+        (jscmain): Need a temporary to perform '&' in VS2010.
+
 2013-09-18  Filip Pizlo  <fpi...@apple.com>
 
         Give 'jsc' commandline an option to disable deleting the VM.

Modified: trunk/Source/_javascript_Core/jsc.cpp (156066 => 156067)


--- trunk/Source/_javascript_Core/jsc.cpp	2013-09-18 22:26:09 UTC (rev 156066)
+++ trunk/Source/_javascript_Core/jsc.cpp	2013-09-18 22:36:05 UTC (rev 156067)
@@ -877,9 +877,10 @@
         }
     }
     
-    if (Options::neverDeleteVMInCommandLine())
-        UNUSED_PARAM(vm.release().leakRef());
-    else {
+    if (Options::neverDeleteVMInCommandLine()) {
+        JSC::VM* temp = vm.release().leakRef();
+        UNUSED_PARAM(temp);
+    } else {
         JSLockHolder lock(*vm);
         vm.clear();
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to