summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/assembler/RepatchBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/assembler/RepatchBuffer.h')
-rw-r--r--Source/JavaScriptCore/assembler/RepatchBuffer.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/JavaScriptCore/assembler/RepatchBuffer.h b/Source/JavaScriptCore/assembler/RepatchBuffer.h
index 241ce14c7..41e950ad8 100644
--- a/Source/JavaScriptCore/assembler/RepatchBuffer.h
+++ b/Source/JavaScriptCore/assembler/RepatchBuffer.h
@@ -157,11 +157,6 @@ public:
{
return MacroAssembler::startOfPatchableBranchPtrWithPatchOnAddress(label);
}
-
- static CodeLocationLabel startOfPatchableBranch32WithPatchOnAddress(CodeLocationDataLabel32 label)
- {
- return MacroAssembler::startOfPatchableBranch32WithPatchOnAddress(label);
- }
void replaceWithJump(CodeLocationLabel instructionStart, CodeLocationLabel destination)
{
@@ -181,11 +176,6 @@ public:
MacroAssembler::revertJumpReplacementToPatchableBranchPtrWithPatch(instructionStart, address, value);
}
- void revertJumpReplacementToPatchableBranch32WithPatch(CodeLocationLabel instructionStart, MacroAssembler::Address address, int32_t value)
- {
- MacroAssembler::revertJumpReplacementToPatchableBranch32WithPatch(instructionStart, address, value);
- }
-
private:
CodeBlock* m_codeBlock;
#if ENABLE(ASSEMBLER_WX_EXCLUSIVE)