summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Burgess IV <george.burgess.iv@gmail.com>2018-04-12 21:38:43 +0000
committerGeorge Burgess IV <george.burgess.iv@gmail.com>2018-04-12 21:38:43 +0000
commit1615da6f4eb17882b5234aec47c838af51e6122b (patch)
tree6c3dcc66733472724fe7231525538326759d857a
parent6269d34404bc821fed15458cc69fdf8b7c96245b (diff)
downloadbcm5719-llvm-1615da6f4eb17882b5234aec47c838af51e6122b.tar.gz
bcm5719-llvm-1615da6f4eb17882b5234aec47c838af51e6122b.zip
[ProfileSummary] Remove repeated cutoffs; NFCI
I'm told the repeat of "500000, 600000," is accidental, and should be removed. llvm-svn: 329959
-rw-r--r--llvm/lib/ProfileData/ProfileSummaryBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp b/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
index 5fa1e2cf7d1..a415a5cee23 100644
--- a/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
+++ b/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
@@ -27,8 +27,8 @@ using namespace llvm;
static const uint32_t DefaultCutoffsData[] = {
10000, /* 1% */
100000, /* 10% */
- 200000, 300000, 400000, 500000, 600000, 500000, 600000, 700000,
- 800000, 900000, 950000, 990000, 999000, 999900, 999990, 999999};
+ 200000, 300000, 400000, 500000, 600000, 700000, 800000,
+ 900000, 950000, 990000, 999000, 999900, 999990, 999999};
const ArrayRef<uint32_t> ProfileSummaryBuilder::DefaultCutoffs =
DefaultCutoffsData;
OpenPOWER on IntegriCloud