changeset 18327:cd7e09b0abf8

jit compiler: Delete unused variable * libinterp/corefcn/pt-jit.cc (jit_convert::visit_if_command_list): Delete unused variable branch_blocks
author Stefan Mahr <dac922@gmx.de>
date Mon, 06 Jan 2014 14:00:43 +0100
parents 421bed6994f0
children c3f3fa5a5db5
files libinterp/corefcn/pt-jit.cc
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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<jit_block *> entry_blocks (lst.size () + 1 - last_else);
-  std::vector<jit_block *> branch_blocks (lst.size (), 0); // final blocks
   entry_blocks[0] = block;
 
   // we need to construct blocks first, because they have jumps to eachother