From aac33c8bc53451b9012cccbb29900ca8f9394592 Mon Sep 17 00:00:00 2001 From: Max Kazantsev Date: Mon, 21 Jan 2019 07:36:55 +0000 Subject: [PATCH] [NFC] Make getExpressionSize unsigned short git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351727 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/ScalarEvolution.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1