From 1b2f72912fde45086bc2c5c00e78210661a419a5 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sat, 10 May 2008 11:26:52 +0000 Subject: [PATCH] Prevent -W64-to-32-shortened warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50947 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instructions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index b26eb3a403c..f2afd79e6dd 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -1087,7 +1087,7 @@ CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd, ->getElementType())->getReturnType(), Instruction::Call, OperandTraits::op_end(this) - (ArgEnd - ArgBegin + 1), - ArgEnd - ArgBegin + 1, InsertAtEnd) { + (unsigned)(ArgEnd - ArgBegin + 1), InsertAtEnd) { init(Func, ArgBegin, ArgEnd, Name, typename std::iterator_traits::iterator_category()); } @@ -1099,7 +1099,7 @@ CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd, ->getElementType())->getReturnType(), Instruction::Call, OperandTraits::op_end(this) - (ArgEnd - ArgBegin + 1), - ArgEnd - ArgBegin + 1, InsertBefore) { + (unsigned)(ArgEnd - ArgBegin + 1), InsertBefore) { init(Func, ArgBegin, ArgEnd, Name, typename std::iterator_traits::iterator_category()); }