1*2f09f445SMaksim Panchenko //===- bolt/Profile/ProfileReaderBase.cpp ---------------------------------===//
2a34c753fSRafael Auler //
3a34c753fSRafael Auler // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4a34c753fSRafael Auler // See https://llvm.org/LICENSE.txt for license information.
5a34c753fSRafael Auler // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6a34c753fSRafael Auler //
7a34c753fSRafael Auler //===----------------------------------------------------------------------===//
8a34c753fSRafael Auler //
9a34c753fSRafael Auler //  Interface to be implemented by all profile readers.
10a34c753fSRafael Auler //
11a34c753fSRafael Auler //===----------------------------------------------------------------------===//
12a34c753fSRafael Auler 
13a34c753fSRafael Auler #include "bolt/Profile/ProfileReaderBase.h"
14a34c753fSRafael Auler 
15a34c753fSRafael Auler namespace llvm {
16a34c753fSRafael Auler namespace bolt {
17a34c753fSRafael Auler 
mayHaveProfileData(const BinaryFunction & BF)18a34c753fSRafael Auler bool ProfileReaderBase::mayHaveProfileData(const BinaryFunction &BF) {
19a34c753fSRafael Auler   return true;
20a34c753fSRafael Auler }
21a34c753fSRafael Auler 
2240c2e0faSMaksim Panchenko } // namespace bolt
2340c2e0faSMaksim Panchenko } // namespace llvm
24