You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#89512)
Addresses issue #88716.
Some function parameter names in the affected header files did not match
the parameter names in the definitions, or were listed in a different
order.
---------
Signed-off-by: Troy-Butler <[email protected]>
Static analyser cppcheck says
clang/lib/StaticAnalyzer/Core/RegionStore.cpp:1302:45: warning: Function 'invalidateRegions' argument order different: declaration 'store, Values, E, Count, LCtx, Call, IS, ITraits, Invalidated, InvalidatedTopLevel' definition 'store, Values, Ex, Count, LCtx, Call, IS, ITraits, TopLevelRegions, Invalidated' [funcArgOrderDifferent]
mlir/lib/Dialect/SparseTensor/Transforms/Utils/SparseTensorIterator.cpp:1336:49: warning: Function 'makeSparseTensorLevel' argument order different: declaration 'builder, loc, t, tid, l' definition 'b, l, t, tid, lvl' [funcArgOrderDifferent]
llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp:3155:54: warning: Function 'matchSelectFromAndOr' argument order different: declaration 'A, B, C, D, InvertFalseVal' definition 'A, C, B, D, InvertFalseVal' [funcArgOrderDifferent]
llvm/lib/Transforms/Vectorize/VPlan.cpp:998:48: warning: Function 'updateDominatorTree' argument order different: declaration 'DT, LoopLatchBB, LoopPreHeaderBB, LoopExitBB' definition 'DT, LoopHeaderBB, LoopLatchBB, LoopExitBB' [funcArgOrderDifferent]
Suggest code rework.
The text was updated successfully, but these errors were encountered: