From: Igor Laevsky Date: Wed, 8 Feb 2017 15:21:48 +0000 (+0000) Subject: [InstComobineCalls] Fix buildbot failures after r294453. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eebf5500bee4133a991a9a4d093c06d8217047bc;p=llvm [InstComobineCalls] Fix buildbot failures after r294453. Some targets don't support uint64_t options. Change type to unsigned. Differential Revision: https://reviews.llvm.org/D28909 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294461 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/InstCombine/InstCombineCalls.cpp b/lib/Transforms/InstCombine/InstCombineCalls.cpp index 23f8035e2aa..c26da03a89a 100644 --- a/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -60,7 +60,7 @@ using namespace PatternMatch; STATISTIC(NumSimplified, "Number of library calls simplified"); -static cl::opt UnfoldElementAtomicMemcpyMaxElements( +static cl::opt UnfoldElementAtomicMemcpyMaxElements( "unfold-element-atomic-memcpy-max-elements", cl::init(16), cl::desc("Maximum number of elements in atomic memcpy the optimizer is "