From: Max Kazantsev Date: Mon, 21 Jan 2019 07:36:55 +0000 (+0000) Subject: [NFC] Make getExpressionSize unsigned short X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aac33c8bc53451b9012cccbb29900ca8f9394592;p=llvm [NFC] Make getExpressionSize unsigned short git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351727 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h index bbc1cc7018f..e7869ed84e3 100644 --- a/include/llvm/Analysis/ScalarEvolution.h +++ b/include/llvm/Analysis/ScalarEvolution.h @@ -150,7 +150,7 @@ public: // SCEV and all its operands recursively. We may use it to avoid performing // heavy transformations on SCEVs of excessive size for sake of saving the // compilation time. - unsigned getExpressionSize() const { + unsigned short getExpressionSize() const { return ExpressionSize; }