Bug 1313280 - Fix invalid non-UTF-8 bytes from js/ draft
authorMasatoshi Kimura <VYV03354@nifty.ne.jp>
Fri, 28 Oct 2016 22:14:51 +0900
changeset 433963 5bae7fd07506b628411c12528225ab7367171dd3
parent 433962 f63022a4b43b3cb5d3e458b6798dee6cc45b03f4
child 433964 e4ea99c3874e2bc219328d90f856c2ca35c53a57
push id34692
push userVYV03354@nifty.ne.jp
push dateFri, 04 Nov 2016 15:15:22 +0000
bugs1313280
milestone52.0a1
Bug 1313280 - Fix invalid non-UTF-8 bytes from js/ MozReview-Commit-ID: KG5kiE8QRcv
js/src/vtune/jitprofiling.h
--- a/js/src/vtune/jitprofiling.h
+++ b/js/src/vtune/jitprofiling.h
@@ -332,17 +332,17 @@ typedef struct _iJIT_Method_NIDS
 
 } *piJIT_Method_NIDS, iJIT_Method_NIDS;
 /** @endcond */
 
 typedef enum _iJIT_CodeType
 {
     iJIT_CT_UNKNOWN = 0,
     iJIT_CT_CODE,             // executable code
-    iJIT_CT_DATA,             // this kind of “update” will be excluded from the function’s body.
+    iJIT_CT_DATA,             // this kind of "update" will be excluded from the function's body.
     iJIT_CT_EOF
 } iJIT_CodeType;
 
 typedef struct _iJIT_Method_Update
 {
     unsigned int method_id;
     void* load_address;
     unsigned int size;