[ADT] Fix SmallVector unused template instantiation on 32-bit systems.
authorAndrew Browne <browneee@google.com>
Thu, 30 Apr 2020 22:15:35 +0000 (15:15 -0700)
committerAndrew Browne <browneee@google.com>
Thu, 30 Apr 2020 23:22:54 +0000 (16:22 -0700)
commit25e2e92297e21bb4e0acab1b6bb5b2fdd5dc49ad
tree09da7384a8610eae641cc130e4c46cc73ac4c400
parent046130490f230559e8dae7d7cb4959bd04f89bb8
[ADT] Fix SmallVector unused template instantiation on 32-bit systems.

Summary:
This was introduced in dda3c19a3618dce94 aka D77621.

The unused template instantiation causes a warning on 32 bit systems
about truncating a uint64_t to 32-bit size_t.

Reviewed By: dblaikie, smeenai

Differential Revision: https://reviews.llvm.org/D79214
llvm/lib/Support/SmallVector.cpp