From 03efde5887f04c48a7a73f08557fffb39cd42cea Mon Sep 17 00:00:00 2001 From: Ahmed Bougacha Date: Wed, 21 Aug 2013 07:27:44 +0000 Subject: [PATCH] MC CFG: uint64_t -> size_t for vector size. llvm-svn: 188872 --- llvm/include/llvm/MC/MCAtom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/MC/MCAtom.h b/llvm/include/llvm/MC/MCAtom.h index ad8291f..686f8e1 100644 --- a/llvm/include/llvm/MC/MCAtom.h +++ b/llvm/include/llvm/MC/MCAtom.h @@ -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. -- 2.7.4