We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2343cd5 commit 893cde3Copy full SHA for 893cde3
llvm/include/llvm/Support/InstructionCost.h
@@ -59,10 +59,8 @@ class InstructionCost {
59
State = Invalid;
60
}
61
62
- static inline constexpr CostType MaxValue =
63
- std::numeric_limits<CostType>::max();
64
- static inline constexpr CostType MinValue =
65
- std::numeric_limits<CostType>::min();
+ static constexpr CostType MaxValue = std::numeric_limits<CostType>::max();
+ static constexpr CostType MinValue = std::numeric_limits<CostType>::min();
66
67
public:
68
// A default constructed InstructionCost is a valid zero cost
0 commit comments