7089709: type "jushort" not found

Reviewed-by: kvn, twisti
This commit is contained in:
Tom Rodriguez 2011-09-12 13:51:40 -07:00
parent e3afdf10ad
commit 1f8f1f79be

View file

@ -1341,6 +1341,7 @@ static inline uint64_t cast_uint64_t(size_t x)
declare_unsigned_integer_type(unsigned int) \ declare_unsigned_integer_type(unsigned int) \
declare_unsigned_integer_type(uint) \ declare_unsigned_integer_type(uint) \
declare_unsigned_integer_type(unsigned short) \ declare_unsigned_integer_type(unsigned short) \
declare_unsigned_integer_type(jushort) \
declare_unsigned_integer_type(unsigned long) \ declare_unsigned_integer_type(unsigned long) \
/* The compiler thinks this is a different type than */ \ /* The compiler thinks this is a different type than */ \
/* unsigned short on Win32 */ \ /* unsigned short on Win32 */ \
@ -3216,7 +3217,7 @@ static int recursiveFindType(VMTypeEntry* origtypes, const char* typeName, bool
if (!isRecurse) { if (!isRecurse) {
tty->print_cr("type \"%s\" not found", typeName); tty->print_cr("type \"%s\" not found", typeName);
} }
return 2; return 0;
} }