aboutsummaryrefslogtreecommitdiff
path: root/libjava/include
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-11-25 19:48:19 +0000
committerTom Tromey <tromey@gcc.gnu.org>2001-11-25 19:48:19 +0000
commitfa88ce26e5dd893a1cedc174a9aaf1006e2fa301 (patch)
tree6ed6f524467095e251948101498c4efe08108408 /libjava/include
parent200f4143a27223e207707a0a6204379d45ab4470 (diff)
downloadgcc-fa88ce26e5dd893a1cedc174a9aaf1006e2fa301.zip
gcc-fa88ce26e5dd893a1cedc174a9aaf1006e2fa301.tar.gz
gcc-fa88ce26e5dd893a1cedc174a9aaf1006e2fa301.tar.bz2
verify.cc (_Jv_BytecodeVerifier::branch_prepass): Use java_opcode as type for switch.
* verify.cc (_Jv_BytecodeVerifier::branch_prepass): Use java_opcode as type for switch. [op_wide]: Likewise. (_Jv_BytecodeVerifier::verify_instructions_0): Likewise. [op_invokevirtual]: Likewise. * include/java-insns.h (java_opcode): Give enum a name. From-SVN: r47330
Diffstat (limited to 'libjava/include')
-rw-r--r--libjava/include/java-insns.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/include/java-insns.h b/libjava/include/java-insns.h
index 975a7c9..327fcd3 100644
--- a/libjava/include/java-insns.h
+++ b/libjava/include/java-insns.h
@@ -1,6 +1,6 @@
// java-insns.h - Instruction encodings. This is -*- c++ -*-
-/* Copyright (C) 1999 Free Software Foundation
+/* Copyright (C) 1999, 2001 Free Software Foundation
This file is part of libgcj.
@@ -11,7 +11,7 @@ details. */
#ifndef __JAVA_INSNS_H__
#define __JAVA_INSNS_H__
-enum
+enum java_opcode
{
op_nop = 0x00,
op_aconst_null = 0x01,