comparison src/share/vm/oops/method.hpp @ 10267:8b40495b9381

Merge
author minqi
date Mon, 13 May 2013 18:08:13 +0000
parents e60b3fce2b02 92ef81e2f571
children 603ca7e51354
comparison
equal deleted inserted replaced
10264:735c995bf1a1 10267:8b40495b9381
984 private: 984 private:
985 ExceptionTableElement* _table; 985 ExceptionTableElement* _table;
986 u2 _length; 986 u2 _length;
987 987
988 public: 988 public:
989 ExceptionTable(Method* m) { 989 ExceptionTable(const Method* m) {
990 if (m->has_exception_handler()) { 990 if (m->has_exception_handler()) {
991 _table = m->exception_table_start(); 991 _table = m->exception_table_start();
992 _length = m->exception_table_length(); 992 _length = m->exception_table_length();
993 } else { 993 } else {
994 _table = NULL; 994 _table = NULL;