Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / bolt / lib / Profile / ProfileReaderBase.cpp
blobee6166b1da369ec9b063481a1ca0e42f49af350a
1 //===- bolt/Profile/ProfileReaderBase.cpp ---------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Interface to be implemented by all profile readers.
11 //===----------------------------------------------------------------------===//
13 #include "bolt/Profile/ProfileReaderBase.h"
15 namespace llvm {
16 namespace bolt {
18 bool ProfileReaderBase::mayHaveProfileData(const BinaryFunction &BF) {
19 return true;
22 } // namespace bolt
23 } // namespace llvm