diff options
author | Evandro Menezes <e.menezes@samsung.com> | 2019-06-19 16:12:12 +0000 |
---|---|---|
committer | Evandro Menezes <e.menezes@samsung.com> | 2019-06-19 16:12:12 +0000 |
commit | 567f6c150dd726c2ec9175ba7e7a6a954e69d0f6 (patch) | |
tree | c6ce668bca9635e3240582edd7bdd4d69d1c5549 /llvm/lib/Target/AVR | |
parent | 56c45e93ab1b5ec4017e9dac1eed80fe828c5a0b (diff) | |
download | bcm5719-llvm-567f6c150dd726c2ec9175ba7e7a6a954e69d0f6.tar.gz bcm5719-llvm-567f6c150dd726c2ec9175ba7e7a6a954e69d0f6.zip |
[AVR] Change limit type to match the argument type (NFC)
llvm-svn: 363832
Diffstat (limited to 'llvm/lib/Target/AVR')
-rw-r--r-- | llvm/lib/Target/AVR/AVRISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AVR/AVRISelLowering.cpp b/llvm/lib/Target/AVR/AVRISelLowering.cpp index f6e1ba8d1b3..b6ba5f22faf 100644 --- a/llvm/lib/Target/AVR/AVRISelLowering.cpp +++ b/llvm/lib/Target/AVR/AVRISelLowering.cpp @@ -237,7 +237,7 @@ AVRTargetLowering::AVRTargetLowering(const AVRTargetMachine &TM, setLibcallName(RTLIB::COS_F32, "cos"); setMinFunctionAlignment(1); - setMinimumJumpTableEntries(INT_MAX); + setMinimumJumpTableEntries(UINT_MAX); } const char *AVRTargetLowering::getTargetNodeName(unsigned Opcode) const { |