Fix build error due to unsigned compare >= 0 in r263008 (NFC)
authorTeresa Johnson <tejohnson@google.com>
Wed, 9 Mar 2016 14:58:23 +0000 (14:58 +0000)
committerTeresa Johnson <tejohnson@google.com>
Wed, 9 Mar 2016 14:58:23 +0000 (14:58 +0000)
commite50b23c67f320d42e1a83f1b428bd5b319d7cd35
tree8e4f22cfedd539b6c6ed6fd01bd6f4049370c988
parent972b236c304f5a6e5beded05f31a6a9bd52a3adc
Fix build error due to unsigned compare >= 0 in r263008 (NFC)

Fixes error from building with clang:

/usr/local/google/home/tejohnson/llvm/llvm_15/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp:407:12:
error: comparison of unsigned expression >= 0 is always true
[-Werror,-Wtautological-compare]
  if ((Imm >= 0x000) && (Imm <= 0x0ff)) {
         ~~~ ^  ~~~~~

llvm-svn: 263014
llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp