mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Add an important prototype
llvm-svn: 11320
This commit is contained in:
parent
36f91c80f4
commit
19d997875e
@ -21,8 +21,16 @@
|
||||
#ifndef LLVM_ANALYSIS_PROFILEINFO_H
|
||||
#define LLVM_ANALYSIS_PROFILEINFO_H
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
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 {
|
||||
virtual ~ProfileInfo(); // We want to be subclassed
|
||||
|
Loading…
Reference in New Issue
Block a user