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.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "bolt/Profile/ProfileReaderBase.h"
14 
15 namespace llvm {
16 namespace bolt {
17 
mayHaveProfileData(const BinaryFunction & BF)18 bool ProfileReaderBase::mayHaveProfileData(const BinaryFunction &BF) {
19   return true;
20 }
21 
22 } // namespace bolt
23 } // namespace llvm
24