summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAhmed Bougacha <ahmed.bougacha@gmail.com>2013-08-21 07:27:44 +0000
committerAhmed Bougacha <ahmed.bougacha@gmail.com>2013-08-21 07:27:44 +0000
commite0511ded947bc9a63608b94909da888e97a0b4e4 (patch)
treef0c84c47f944e5b5419ef2f027bf8a8209d6640e /include
parent73260db46b9daf8d0b60298d9d50fb0a3af8f8af (diff)
downloadllvm-e0511ded947bc9a63608b94909da888e97a0b4e4.tar.gz
llvm-e0511ded947bc9a63608b94909da888e97a0b4e4.tar.bz2
llvm-e0511ded947bc9a63608b94909da888e97a0b4e4.tar.xz
MC CFG: uint64_t -> size_t for vector size.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAtom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCAtom.h b/include/llvm/MC/MCAtom.h
index ad8291fe7b..686f8e1158 100644
--- a/include/llvm/MC/MCAtom.h
+++ b/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.