From ebf6afd3a0d954015b6d57c2d54492c70937a44e Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Sat, 28 Oct 2017 08:48:51 -0400 Subject: [PATCH] Bug 1412513 - remove an unused field in MoveEmitterARM64; r=arai --- js/src/jit/arm64/MoveEmitter-arm64.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/js/src/jit/arm64/MoveEmitter-arm64.h b/js/src/jit/arm64/MoveEmitter-arm64.h index 09f96315fdc8..64bf5fdcb84a 100644 --- a/js/src/jit/arm64/MoveEmitter-arm64.h +++ b/js/src/jit/arm64/MoveEmitter-arm64.h @@ -24,11 +24,10 @@ class MoveEmitterARM64 // Original stack push value. uint32_t pushedAtStart_; - // These store stack offsets to spill locations, snapshotting - // codegen->framePushed_ at the time they were allocated. They are -1 if no + // This stores a stack offset to a spill location, snapshotting + // codegen->framePushed_ at the time it was allocated. It is -1 if no // stack space has been allocated for that particular spill. int32_t pushedAtCycle_; - int32_t pushedAtSpill_; void assertDone() { MOZ_ASSERT(!inCycle_); @@ -65,8 +64,7 @@ class MoveEmitterARM64 : inCycle_(false), masm(masm), pushedAtStart_(masm.framePushed()), - pushedAtCycle_(-1), - pushedAtSpill_(-1) + pushedAtCycle_(-1) { } ~MoveEmitterARM64() {