[llvm] r363832 - [AVR] Change limit type to match the argument type (NFC)

Evandro Menezes via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 19 09:12:12 PDT 2019


Author: evandro
Date: Wed Jun 19 09:12:12 2019
New Revision: 363832

URL: http://llvm.org/viewvc/llvm-project?rev=363832&view=rev
Log:
[AVR] Change limit type to match the argument type (NFC)

Modified:
    llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp

Modified: llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp?rev=363832&r1=363831&r2=363832&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/AVR/AVRISelLowering.cpp Wed Jun 19 09:12:12 2019
@@ -237,7 +237,7 @@ AVRTargetLowering::AVRTargetLowering(con
   setLibcallName(RTLIB::COS_F32, "cos");
 
   setMinFunctionAlignment(1);
-  setMinimumJumpTableEntries(INT_MAX);
+  setMinimumJumpTableEntries(UINT_MAX);
 }
 
 const char *AVRTargetLowering::getTargetNodeName(unsigned Opcode) const {




More information about the llvm-commits mailing list