From 8734c036a7872649b8cccd338bdc9fa92d90100c Mon Sep 17 00:00:00 2001 From: David Wendt Date: Sun, 29 Sep 2019 09:13:49 -0400 Subject: [PATCH] Removed unused function --- core/src/avm1.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/core/src/avm1.rs b/core/src/avm1.rs index 8b02dffb8..5814feecc 100644 --- a/core/src/avm1.rs +++ b/core/src/avm1.rs @@ -414,15 +414,6 @@ impl<'gc> Avm1<'gc> { self.stack.pop().ok_or_else(|| "Stack underflow".into()) } - /// Allocate a register set for the current stack frame. - /// - /// The allocated register set replaces the current local register set, if - /// any, and remains until the current function returns. With registers - /// allocated, the global register set becomes inactive for the current - /// activation. - pub fn allocate_registers(&mut self, num: u8, context: &mut ActionContext<'_, 'gc, '_>) { - } - /// Retrieve a given register value. /// /// If a given register does not exist, this function yields