Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index 46aa0a5a173640ad20965e956754cbe502431d57..ef87a539d0b5fc19aabf091cbcff945bbb766f15 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -3246,13 +3246,10 @@ void MacroAssembler::PushTryHandler(StackHandler::Kind kind, |
// For the JSEntry handler, we must preserve a0-a3 and s0. |
// t1-t3 are available. We will build up the handler from the bottom by |
// pushing on the stack. |
- // Set up the the state (t2) for pushing. |
- unsigned state = |
- StackHandler::IndexField::encode(handler_index) | |
- StackHandler::KindField::encode(kind); |
- li(t2, Operand(state)); |
+ // Set up the the index (t2) for pushing. |
+ li(t2, Operand(handler_index)); |
- // Push the context and state. |
+ // Push the context and index. |
if (kind == StackHandler::JS_ENTRY) { |
DCHECK(Smi::FromInt(0) == 0); |
// The zero_reg indicates no context. |