From: Evandro Menezes Date: Wed, 19 Jun 2019 16:12:12 +0000 (+0000) Subject: [AVR] Change limit type to match the argument type (NFC) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e548188bb2fdc943aca11623616e9332fef8cc8;p=llvm [AVR] Change limit type to match the argument type (NFC) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363832 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AVR/AVRISelLowering.cpp b/lib/Target/AVR/AVRISelLowering.cpp index f6e1ba8d1b3..b6ba5f22faf 100644 --- a/lib/Target/AVR/AVRISelLowering.cpp +++ b/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 {