# HG changeset patch # User Stefan Mahr # Date 1389013243 -3600 # Node ID cd7e09b0abf83c657d6c01ae0f6803674d3868e1 # Parent 421bed6994f061bde32424cf5c4b94ac8208b38c jit compiler: Delete unused variable * libinterp/corefcn/pt-jit.cc (jit_convert::visit_if_command_list): Delete unused variable branch_blocks diff -r 421bed6994f0 -r cd7e09b0abf8 libinterp/corefcn/pt-jit.cc --- a/libinterp/corefcn/pt-jit.cc Sun Jan 05 17:51:52 2014 +0100 +++ b/libinterp/corefcn/pt-jit.cc Mon Jan 06 14:00:43 2014 +0100 @@ -541,7 +541,6 @@ // the condition check for the ith clause. For the else, it is simple the // else body. If there is no else body, then it is padded with the tail std::vector entry_blocks (lst.size () + 1 - last_else); - std::vector branch_blocks (lst.size (), 0); // final blocks entry_blocks[0] = block; // we need to construct blocks first, because they have jumps to eachother