mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-11 21:38:19 +00:00
Add an important prototype
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11320 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -21,8 +21,16 @@
|
|||||||
#ifndef LLVM_ANALYSIS_PROFILEINFO_H
|
#ifndef LLVM_ANALYSIS_PROFILEINFO_H
|
||||||
#define LLVM_ANALYSIS_PROFILEINFO_H
|
#define LLVM_ANALYSIS_PROFILEINFO_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class BasicBlock;
|
class BasicBlock;
|
||||||
|
class Pass;
|
||||||
|
|
||||||
|
/// createProfileLoaderPass - This function returns a Pass that loads the
|
||||||
|
/// profiling information for the module from the specified filename, making
|
||||||
|
/// it available to the optimizers.
|
||||||
|
Pass *createProfileLoaderPass(const std::string &Filename);
|
||||||
|
|
||||||
struct ProfileInfo {
|
struct ProfileInfo {
|
||||||
virtual ~ProfileInfo(); // We want to be subclassed
|
virtual ~ProfileInfo(); // We want to be subclassed
|
||||||
|
Reference in New Issue
Block a user