forked from OSchip/llvm-project
parent
593c36c1c8
commit
65553d4505
|
@ -104,7 +104,7 @@ void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global);
|
|||
}
|
||||
|
||||
namespace llvm {
|
||||
class GenericValue;
|
||||
struct GenericValue;
|
||||
class ExecutionEngine;
|
||||
|
||||
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
|
||||
|
|
|
@ -25,7 +25,7 @@ namespace llvm {
|
|||
class DominatorTree;
|
||||
class Instruction;
|
||||
class Value;
|
||||
class IVUsersOfOneStride;
|
||||
struct IVUsersOfOneStride;
|
||||
|
||||
/// IVStrideUse - Keep track of one use of a strided induction variable, where
|
||||
/// the stride is stored externally. The Offset member keeps track of the
|
||||
|
|
|
@ -164,7 +164,7 @@ namespace llvm {
|
|||
};
|
||||
|
||||
friend class SCEVCallbackVH;
|
||||
friend class SCEVExpander;
|
||||
friend struct SCEVExpander;
|
||||
|
||||
/// F - The function we are analyzing.
|
||||
///
|
||||
|
|
|
@ -30,7 +30,7 @@ namespace llvm {
|
|||
class GlobalVariable;
|
||||
class Module;
|
||||
class SourceFile;
|
||||
class SourceLanguage;
|
||||
struct SourceLanguage;
|
||||
class ProgramInfo;
|
||||
|
||||
/// SourceLanguageCache - SourceLanguage implementations are allowed to cache
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
namespace llvm {
|
||||
|
||||
class LiveInterval;
|
||||
struct LiveInterval;
|
||||
class LiveIntervals;
|
||||
class LiveStacks;
|
||||
class MachineFunction;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
namespace llvm {
|
||||
|
||||
class Function;
|
||||
class JITEvent_EmittedFunctionDetails;
|
||||
struct JITEvent_EmittedFunctionDetails;
|
||||
class MachineCodeEmitter;
|
||||
class MachineCodeInfo;
|
||||
class TargetJITInfo;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
namespace llvm {
|
||||
class CLICommand;
|
||||
class SourceFile;
|
||||
class SourceLanguage;
|
||||
struct SourceLanguage;
|
||||
class ProgramInfo;
|
||||
class RuntimeInfo;
|
||||
class LLVMContext;
|
||||
|
|
Loading…
Reference in New Issue