verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
authorTom Tromey <tromey@redhat.com>
Fri, 7 Dec 2001 03:30:47 +0000 (03:30 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Fri, 7 Dec 2001 03:30:47 +0000 (03:30 +0000)
* verify.cc (_Jv_BytecodeVerifier::FLAG_JSR_TARGET): Removed.
(_Jv_BytecodeVerifier::note_branch_target): Likewise.

From-SVN: r47745

libjava/ChangeLog
libjava/verify.cc

index 8aa2e380848426e67d910b284757736fece8c694..ed3bafc49e1a651c9b0be95cfab0668d0dd560fb 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 c1c8fff3ee8d52bc9c805eeb72da61465dce1db7..37935c4eca20026b55a74bad8b8c4e6bb4863d6c 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;
       }
   }