mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8209586: AARCH64: SymbolTable changes throw assert on aarch64
Cast the comparison value to match the signdeness Reviewed-by: gziemski, coleenp
This commit is contained in:
parent
20f3793312
commit
2788ddc4eb
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ private:
|
|||
#ifdef ASSERT
|
||||
assert(sym->utf8_length() == _len, "%s [%d,%d]", where, sym->utf8_length(), _len);
|
||||
for (int i = 0; i < _len; i++) {
|
||||
assert(sym->byte_at(i) == _name[i],
|
||||
assert(sym->byte_at(i) == (jbyte) _name[i],
|
||||
"%s [%d,%d,%d]", where, i, sym->byte_at(i), _name[i]);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue