diff options
| author | David Blaikie <dblaikie@gmail.com> | 2017-02-07 18:58:17 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2017-02-07 18:58:17 +0000 |
| commit | 4c01af203e4b40c06c8a5eecb837b8a2671d2ab9 (patch) | |
| tree | ba717c17024be755737226500826db054871a319 | |
| parent | 17aeb5a260d54b24f1c173262467fd63d1b2760e (diff) | |
| download | bcm5719-llvm-4c01af203e4b40c06c8a5eecb837b8a2671d2ab9.tar.gz bcm5719-llvm-4c01af203e4b40c06c8a5eecb837b8a2671d2ab9.zip | |
Fix the -Werror build for some sign-comparisons
llvm-svn: 294331
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineInternal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineInternal.h b/llvm/lib/Transforms/InstCombine/InstCombineInternal.h index bfa6964ec63..9e04f5d7cb0 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineInternal.h +++ b/llvm/lib/Transforms/InstCombine/InstCombineInternal.h @@ -509,7 +509,7 @@ public: } /// Maximum size of array considered when transforming. - int MaxArraySizeForCombine; + uint64_t MaxArraySizeForCombine; private: /// \brief Performs a few simplifications for operators which are associative |

