llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-pgo Author: Snehasish Kumar (snehasish) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/140504.diff 1 Files Affected: - (modified) llvm/include/llvm/ProfileData/MemProf.h (+16-4) ``````````diff diff --git a/llvm/include/llvm/ProfileData/MemProf.h b/llvm/include/llvm/ProfileData/MemProf.h index ce5cd5ee4856b..683193aa42747 100644 --- a/llvm/include/llvm/ProfileData/MemProf.h +++ b/llvm/include/llvm/ProfileData/MemProf.h @@ -1,5 +1,18 @@ -#ifndef LLVM_PROFILEDATA_MEMPROF_H_ -#define LLVM_PROFILEDATA_MEMPROF_H_ +//===- MemProf.h - MemProf support ------------------------------*- C++ -*-===// +// +// 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 +// +//===----------------------------------------------------------------------===// +// +// This file contains common definitions used in the reading and writing of +// memory profile data. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_PROFILEDATA_MEMPROF_H +#define LLVM_PROFILEDATA_MEMPROF_H #include "llvm/ADT/BitVector.h" #include "llvm/ADT/MapVector.h" @@ -844,5 +857,4 @@ struct LineLocation { using CallEdgeTy = std::pair<LineLocation, uint64_t>; } // namespace memprof } // namespace llvm - -#endif // LLVM_PROFILEDATA_MEMPROF_H_ +#endif // LLVM_PROFILEDATA_MEMPROF_H `````````` </details> https://github.com/llvm/llvm-project/pull/140504 _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits