From dca1252a5b71d25c161d69d0f16804fe0a7a6c72 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 llvm-svn: 351727 --- llvm/include/llvm/Analysis/ScalarEvolution.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h index bbc1cc7..e7869ed 100644 --- a/llvm/include/llvm/Analysis/ScalarEvolution.h +++ b/llvm/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.7.4