1 //===- RawMemProfReader.h - Instrumented memory profiling reader *- C++ -*-===// 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 // This file just includes MemProfReader.h for compatibility with 10 // out-of-tree users. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef LLVM_PROFILEDATA_RAWMEMPROFREADER_H_ 15 #define LLVM_PROFILEDATA_RAWMEMPROFREADER_H_ 16 17 #include "llvm/ProfileData/MemProfReader.h" 18 19 #endif // LLVM_PROFILEDATA_RAWMEMPROFREADER_H_ 20