summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-mca
diff options
context:
space:
mode:
authorAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>2019-03-04 12:23:05 +0000
committerAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>2019-03-04 12:23:05 +0000
commit9735d9011a70f3efe317ce20645f7e1cbe6c6888 (patch)
tree7f50bc7c5d772fdd5f19d6d836bcb08614244c42 /llvm/tools/llvm-mca
parentbe3281a281e36c416df469ed81a4e398132da953 (diff)
downloadbcm5719-llvm-9735d9011a70f3efe317ce20645f7e1cbe6c6888.tar.gz
bcm5719-llvm-9735d9011a70f3efe317ce20645f7e1cbe6c6888.zip
[MCA] Correctly initialize struct SummaryView::BackPressureInfo.
This should appease the buildbots. llvm-svn: 355309
Diffstat (limited to 'llvm/tools/llvm-mca')
-rw-r--r--llvm/tools/llvm-mca/Views/SummaryView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/Views/SummaryView.cpp b/llvm/tools/llvm-mca/Views/SummaryView.cpp
index 59421604506..44b1139c94f 100644
--- a/llvm/tools/llvm-mca/Views/SummaryView.cpp
+++ b/llvm/tools/llvm-mca/Views/SummaryView.cpp
@@ -25,7 +25,7 @@ namespace mca {
SummaryView::SummaryView(const MCSchedModel &Model, ArrayRef<MCInst> S,
unsigned Width)
: SM(Model), Source(S), DispatchWidth(Width), LastInstructionIdx(0),
- TotalCycles(0), NumMicroOps(0), BPI({0, 0, 0, 0}),
+ TotalCycles(0), NumMicroOps(0), BPI({0, 0, 0, 0, 0}),
ResourcePressureDistribution(Model.getNumProcResourceKinds(), 0),
ProcResourceUsage(Model.getNumProcResourceKinds(), 0),
ProcResourceMasks(Model.getNumProcResourceKinds()),
OpenPOWER on IntegriCloud