diff options
Diffstat (limited to 'llvm/tools/llvm-mca/TimelineView.cpp')
-rw-r--r-- | llvm/tools/llvm-mca/TimelineView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/TimelineView.cpp b/llvm/tools/llvm-mca/TimelineView.cpp index 8087ea97e3c..6e75cac0d43 100644 --- a/llvm/tools/llvm-mca/TimelineView.cpp +++ b/llvm/tools/llvm-mca/TimelineView.cpp @@ -34,7 +34,7 @@ void TimelineView::initialize(unsigned MaxIterations) { std::fill(WaitTime.begin(), WaitTime.end(), NullWTEntry); } -void TimelineView::onInstructionEvent(const HWInstructionEvent &Event) { +void TimelineView::onEvent(const HWInstructionEvent &Event) { const unsigned Index = Event.IR.getSourceIndex(); if (CurrentCycle >= MaxCycle || Index >= Timeline.size()) return; |