From: Evandro Menezes Date: Wed, 19 Jun 2019 16:12:01 +0000 (+0000) Subject: [Hexagon] Change limit type to match the argument type (NFC) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4d0321dc955f40ad0547bea9787379e2fb3af24;p=llvm [Hexagon] Change limit type to match the argument type (NFC) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363831 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Hexagon/HexagonISelLowering.cpp b/lib/Target/Hexagon/HexagonISelLowering.cpp index f1daa33bb6d..b72498777ed 100644 --- a/lib/Target/Hexagon/HexagonISelLowering.cpp +++ b/lib/Target/Hexagon/HexagonISelLowering.cpp @@ -1325,7 +1325,7 @@ HexagonTargetLowering::HexagonTargetLowering(const TargetMachine &TM, if (EmitJumpTables) setMinimumJumpTableEntries(MinimumJumpTables); else - setMinimumJumpTableEntries(std::numeric_limits::max()); + setMinimumJumpTableEntries(std::numeric_limits::max()); setOperationAction(ISD::BR_JT, MVT::Other, Expand); setOperationAction(ISD::ABS, MVT::i32, Legal);