MC CFG: uint64_t -> size_t for vector size.

llvm-svn: 188872
This commit is contained in:
Ahmed Bougacha 2013-08-21 07:27:44 +00:00
parent 729ad51905
commit 03efde5887
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ public:
const MCDecodedInst &back() const { return Insts.back(); }
const MCDecodedInst &at(size_t n) const { return Insts.at(n); }
uint64_t size() const { return Insts.size(); }
size_t size() const { return Insts.size(); }
/// @}
/// \name Atom type specific split/truncate logic.