Title: [194355] trunk/Source/_javascript_Core
Revision
194355
Author
[email protected]
Date
2015-12-21 15:49:43 -0800 (Mon, 21 Dec 2015)

Log Message

Address review feedback from Saam.  I should have landed it in r194354.

* b3/testb3.cpp:
(JSC::B3::testStore16Arg):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (194354 => 194355)


--- trunk/Source/_javascript_Core/ChangeLog	2015-12-21 23:40:36 UTC (rev 194354)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-12-21 23:49:43 UTC (rev 194355)
@@ -1,5 +1,12 @@
 2015-12-21  Filip Pizlo  <[email protected]>
 
+        Address review feedback from Saam.  I should have landed it in r194354.
+
+        * b3/testb3.cpp:
+        (JSC::B3::testStore16Arg):
+
+2015-12-21  Filip Pizlo  <[email protected]>
+
         B3 should be able to compile Store16
         https://bugs.webkit.org/show_bug.cgi?id=152493
 

Modified: trunk/Source/_javascript_Core/b3/testb3.cpp (194354 => 194355)


--- trunk/Source/_javascript_Core/b3/testb3.cpp	2015-12-21 23:40:36 UTC (rev 194354)
+++ trunk/Source/_javascript_Core/b3/testb3.cpp	2015-12-21 23:49:43 UTC (rev 194355)
@@ -4078,7 +4078,7 @@
         root->appendNew<MemoryValue>(proc, Store16, Origin(), value, address);
         root->appendNew<ControlValue>(proc, Return, Origin(), value);
 
-        int8_t storage = -1;
+        int16_t storage = -1;
         CHECK(compileAndRun<int64_t>(proc, 42, &storage, 1) == 42);
         CHECK(storage == 42);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to