Title: [159099] trunk/Source/_javascript_Core
- Revision
- 159099
- Author
- [email protected]
- Date
- 2013-11-12 00:21:05 -0800 (Tue, 12 Nov 2013)
Log Message
InvalidIndex shouldn't be private in GPRInfo and FPRInfo for sh4, mips and arm64 architectures.
https://bugs.webkit.org/show_bug.cgi?id=124156
Patch by Julien Brianceau <[email protected]> on 2013-11-12
Reviewed by Michael Saboff.
* jit/FPRInfo.h:
(JSC::FPRInfo::debugName):
* jit/GPRInfo.h:
(JSC::GPRInfo::debugName):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (159098 => 159099)
--- trunk/Source/_javascript_Core/ChangeLog 2013-11-12 07:56:45 UTC (rev 159098)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-11-12 08:21:05 UTC (rev 159099)
@@ -1,3 +1,15 @@
+2013-11-12 Julien Brianceau <[email protected]>
+
+ InvalidIndex shouldn't be private in GPRInfo and FPRInfo for sh4, mips and arm64 architectures.
+ https://bugs.webkit.org/show_bug.cgi?id=124156
+
+ Reviewed by Michael Saboff.
+
+ * jit/FPRInfo.h:
+ (JSC::FPRInfo::debugName):
+ * jit/GPRInfo.h:
+ (JSC::GPRInfo::debugName):
+
2013-11-11 Andreas Kling <[email protected]>
CodeBlock: Un-segment some Vectors.
Modified: trunk/Source/_javascript_Core/jit/FPRInfo.h (159098 => 159099)
--- trunk/Source/_javascript_Core/jit/FPRInfo.h 2013-11-12 07:56:45 UTC (rev 159098)
+++ trunk/Source/_javascript_Core/jit/FPRInfo.h 2013-11-12 08:21:05 UTC (rev 159099)
@@ -257,7 +257,6 @@
return nameForRegister[reg];
}
-private:
static const unsigned InvalidIndex = 0xffffffff;
};
@@ -324,7 +323,6 @@
};
return nameForRegister[reg];
}
-private:
static const unsigned InvalidIndex = 0xffffffff;
};
@@ -388,7 +386,6 @@
return nameForRegister[reg];
}
-private:
static const unsigned InvalidIndex = 0xffffffff;
};
Modified: trunk/Source/_javascript_Core/jit/GPRInfo.h (159098 => 159099)
--- trunk/Source/_javascript_Core/jit/GPRInfo.h 2013-11-12 07:56:45 UTC (rev 159098)
+++ trunk/Source/_javascript_Core/jit/GPRInfo.h 2013-11-12 08:21:05 UTC (rev 159099)
@@ -681,7 +681,6 @@
};
return nameForRegister[reg];
}
-private:
static const unsigned InvalidIndex = 0xffffffff;
};
@@ -753,7 +752,6 @@
return nameForRegister[reg];
}
-private:
static const unsigned InvalidIndex = 0xffffffff;
};
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes