From: Craig Topper Date: Sun, 31 Jan 2016 20:36:20 +0000 (+0000) Subject: Replace utostr_32 use with utostr to match removal from llvm. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fb6e47101386e2544fd532afe4a7fd6d3f64b92;p=platform%2Fupstream%2Fllvm.git Replace utostr_32 use with utostr to match removal from llvm. llvm-svn: 259333 --- diff --git a/polly/lib/Analysis/ScopInfo.cpp b/polly/lib/Analysis/ScopInfo.cpp index 8f98aa5..908dea3 100644 --- a/polly/lib/Analysis/ScopInfo.cpp +++ b/polly/lib/Analysis/ScopInfo.cpp @@ -1620,7 +1620,7 @@ __isl_give isl_id *Scop::getIdForParam(const SCEV *Parameter) { std::string ParameterName; - ParameterName = "p_" + utostr_32(IdIter->second); + ParameterName = "p_" + utostr(IdIter->second); if (const SCEVUnknown *ValueParameter = dyn_cast(Parameter)) { Value *Val = ValueParameter->getValue();