MC CFG: uint64_t -> size_t for vector size.
[oota-llvm.git] / include / llvm / MC / MCAtom.h
index ad8291fe7b2c96e7d5c3353aa1b7f35f7120b9fb..686f8e11584dfe685310671466e8ca047364e074 100644 (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.