Update addrlib.
Corrects type errors and adds gfx1030 support. Change-Id: I7fe7b5ded68b1e26fb899676712ad019089a45f3
This commit is contained in:
@@ -83,11 +83,11 @@ BOOL_32 Coordinate::operator<(const Coordinate& b)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (dim == 's' || b.dim == 'm')
|
||||
if (dim == DIM_S || b.dim == DIM_M)
|
||||
{
|
||||
ret = TRUE;
|
||||
}
|
||||
else if (b.dim == 's' || dim == 'm')
|
||||
else if (b.dim == DIM_S || dim == DIM_M)
|
||||
{
|
||||
ret = FALSE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user