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 50578cf commit 91e7a17Copy full SHA for 91e7a17
llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
@@ -93,7 +93,7 @@ void InstructionInfoView::collectData(
93
MutableArrayRef<InstructionInfoViewData> IIVD) const {
94
const llvm::MCSubtargetInfo &STI = getSubTargetInfo();
95
const MCSchedModel &SM = STI.getSchedModel();
96
- for (const auto &I : zip(getSource(), IIVD)) {
+ for (const auto I : zip(getSource(), IIVD)) {
97
const MCInst &Inst = std::get<0>(I);
98
InstructionInfoViewData &IIVDEntry = std::get<1>(I);
99
const MCInstrDesc &MCDesc = MCII.get(Inst.getOpcode());
0 commit comments