diff options
author | Siavash Eliasi <[email protected]> | 2013-12-12 18:28:52 +0330 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-01-31 00:50:08 +0100 |
commit | 03065ea05cd601021dc20b9d809ec75e63621e31 (patch) | |
tree | 4e26de2350a3969b8825adcd75eba0bafa095750 /src/gallium/drivers/r600/r600_asm.c | |
parent | 9f26ad00d7f70af72b8ca53604c62587fc2173c4 (diff) |
r600g: Removed unnecessary positivity check for unsigned int variable.
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 86f79e209b2..c5922a8fa5b 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -387,7 +387,7 @@ static int reserve_cfile(struct r600_bytecode *bc, struct alu_bank_swizzle *bs, static int is_gpr(unsigned sel) { - return (sel >= 0 && sel <= 127); + return (sel <= 127); } /* CB constants start at 512, and get translated to a kcache index when ALU |