Files
clang-p2996/bolt/lib/Profile/ProfileReaderBase.cpp
Maksim Panchenko 2f09f445b2 [BOLT][NFC] Fix file-description comments
Summary: Fix comments at the start of source files.

(cherry picked from FBD33274597)
2021-12-21 10:21:41 -08:00

24 lines
722 B
C++

//===- bolt/Profile/ProfileReaderBase.cpp ---------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Interface to be implemented by all profile readers.
//
//===----------------------------------------------------------------------===//
#include "bolt/Profile/ProfileReaderBase.h"
namespace llvm {
namespace bolt {
bool ProfileReaderBase::mayHaveProfileData(const BinaryFunction &BF) {
return true;
}
} // namespace bolt
} // namespace llvm