Unreviewed. Remove build warning below since r252978.

warning: format ‘%llx’ expects argument of type ‘long long unsigned int’,
but argument 3 has type ‘JSC::SpeculatedType {aka long unsigned int}’ [-Wformat=]

* runtime/PredictionFileCreatingFuzzerAgent.cpp:
(JSC::PredictionFileCreatingFuzzerAgent::getPredictionInternal):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@253207 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index 1b70267..5b7db0c 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2019-12-06  Joonghun Park  <jh718.park@samsung.com>
+
+        Unreviewed. Remove build warning below since r252978.
+
+        warning: format ‘%llx’ expects argument of type ‘long long unsigned int’,
+        but argument 3 has type ‘JSC::SpeculatedType {aka long unsigned int}’ [-Wformat=]
+
+        * runtime/PredictionFileCreatingFuzzerAgent.cpp:
+        (JSC::PredictionFileCreatingFuzzerAgent::getPredictionInternal):
+
 2019-12-05  Saam Barati  <sbarati@apple.com>
 
         get_by_id ICs should have a structure history used to indicate when we should skip generating an IC
diff --git a/Source/JavaScriptCore/runtime/PredictionFileCreatingFuzzerAgent.cpp b/Source/JavaScriptCore/runtime/PredictionFileCreatingFuzzerAgent.cpp
index 319c532..929783e 100644
--- a/Source/JavaScriptCore/runtime/PredictionFileCreatingFuzzerAgent.cpp
+++ b/Source/JavaScriptCore/runtime/PredictionFileCreatingFuzzerAgent.cpp
@@ -59,7 +59,7 @@
     case op_call_varargs:
     case op_tail_call:
     case op_tail_call_varargs:
-        dataLogF("%s:%llx\n", predictionTarget.lookupKey.utf8().data(), original);
+        dataLogF("%s:%lx\n", predictionTarget.lookupKey.utf8().data(), original);
         break;
 
     default: