Update addrlib.

Corrects type errors and adds gfx1030 support.

Change-Id: I7fe7b5ded68b1e26fb899676712ad019089a45f3
This commit is contained in:
Sean Keely
2020-06-17 14:09:23 -05:00
parent 0dae86f686
commit 4081c564ee
6 changed files with 96 additions and 124 deletions
@@ -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;
}