]> granicus.if.org Git - llvm/commitdiff
[DAGCombine] Remove LoadedSlice::Cost default 'ForCodeSize' constructor arguments...
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 28 Aug 2019 11:50:36 +0000 (11:50 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 28 Aug 2019 11:50:36 +0000 (11:50 +0000)
These were always being passed in and it allowed me to add the explicit tag to stop a cppcheck warning about 1 argument constructors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370189 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index 7187466b05530958a5789cc397ef3ad7383e443d..959493170e7c21b8e804e3fc3fd0f2d5499a8e84 100644 (file)
@@ -14132,7 +14132,7 @@ struct LoadedSlice {
   /// Helper structure used to compute the cost of a slice.
   struct Cost {
     /// Are we optimizing for code size.
-    bool ForCodeSize;
+    bool ForCodeSize = false;
 
     /// Various cost.
     unsigned Loads = 0;
@@ -14141,10 +14141,10 @@ struct LoadedSlice {
     unsigned ZExts = 0;
     unsigned Shift = 0;
 
-    Cost(bool ForCodeSize = false) : ForCodeSize(ForCodeSize) {}
+    explicit Cost(bool ForCodeSize) : ForCodeSize(ForCodeSize) {}
 
     /// Get the cost of one isolated slice.
-    Cost(const LoadedSlice &LS, bool ForCodeSize = false)
+    Cost(const LoadedSlice &LS, bool ForCodeSize)
         : ForCodeSize(ForCodeSize), Loads(1) {
       EVT TruncType = LS.Inst->getValueType(0);
       EVT LoadedType = LS.getLoadedType();