1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

[NFC] Make getExpressionSize unsigned short

llvm-svn: 351727
This commit is contained in:
Max Kazantsev 2019-01-21 07:36:55 +00:00
parent 8a48aae360
commit 589ead7620

View File

@ -150,7 +150,7 @@ public:
// SCEV and all its operands recursively. We may use it to avoid performing // 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 // heavy transformations on SCEVs of excessive size for sake of saving the
// compilation time. // compilation time.
unsigned getExpressionSize() const { unsigned short getExpressionSize() const {
return ExpressionSize; return ExpressionSize;
} }