OSDN Git Service

Fix signed/unsigned compare warning I introduced
authorErich Keane <erich.keane@intel.com>
Thu, 8 Feb 2018 17:11:32 +0000 (17:11 +0000)
committerErich Keane <erich.keane@intel.com>
Thu, 8 Feb 2018 17:11:32 +0000 (17:11 +0000)
commit3d5f32919851244d3bb259a9073c873b84c71df1
tree5c3899fbcd75b131ddf375f04d56b06dcf4a7a2e
parentda8116fe7f16d1b877bcecec98df4788bed90784
Fix signed/unsigned compare warning I introduced

'size' of a vector is unsigned, and I accidentially compared
it to an int through GTEST.  I switched it to unsigned, which
is the template parameter type anyway.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@324625 91177308-0d34-0410-b5e6-96231b3b80d8
unittests/Support/TargetParserTest.cpp