summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-06-29 16:27:38 +0000
committerGabor Greif <ggreif@gmail.com>2010-06-29 16:27:38 +0000
commit16575de25952a5a1f4bd8476609abd0ce4e64631 (patch)
tree7253571e885fd80cf9d1ffd86e06ca5d96a2bce4 /include/llvm
parent1ab38469dfa8050724a8443d7b7ef2885e11e1db (diff)
downloadllvm-16575de25952a5a1f4bd8476609abd0ce4e64631.tar.gz
llvm-16575de25952a5a1f4bd8476609abd0ce4e64631.tar.bz2
llvm-16575de25952a5a1f4bd8476609abd0ce4e64631.tar.xz
minor cosmetics
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index 57c9727b23..814329288d 100644
--- a/include/llvm/Instructions.h
+++ b/include/llvm/Instructions.h
@@ -1079,7 +1079,7 @@ CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
->getElementType())->getReturnType(),
Instruction::Call,
OperandTraits<CallInst>::op_end(this) - (ArgEnd - ArgBegin + 1),
- (unsigned)(ArgEnd - ArgBegin + 1), InsertAtEnd) {
+ unsigned(ArgEnd - ArgBegin + 1), InsertAtEnd) {
init(Func, ArgBegin, ArgEnd, NameStr,
typename std::iterator_traits<InputIterator>::iterator_category());
}