* verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Dec 2001 03:30:47 +0000 (03:30 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Dec 2001 03:30:47 +0000 (03:30 +0000)
(_Jv_BytecodeVerifier::note_branch_target): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47745 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/verify.cc

index 8aa2e38..ed3bafc 100644 (file)
@@ -1,5 +1,8 @@
 2001-12-06  Tom Tromey  <tromey@redhat.com>
 
+       * verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
+       (_Jv_BytecodeVerifier::note_branch_target): Likewise.
+
        * verify.cc (_Jv_BytecodeVerifier::type_val): Added
        unused_by_subroutine_type.
        (_Jv_BytecodeVerifier::type::merge): Handle
index c1c8fff..37935c4 100644 (file)
@@ -64,7 +64,6 @@ private:
 
   static const int FLAG_INSN_START = 1;
   static const int FLAG_BRANCH_TARGET = 2;
-  static const int FLAG_JSR_TARGET = 4;
 
   struct state;
   struct type;
@@ -1265,7 +1264,6 @@ private:
        info->pc = PC;
        info->next = jsr_ptrs[pc];
        jsr_ptrs[pc] = info;
-       flags[pc] |= FLAG_JSR_TARGET;
       }
   }