mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 13:44:28 +00:00
This class is no longer an annotation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14437 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4aa5b2affb
commit
ea104df2b1
@ -28,7 +28,6 @@
|
||||
#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||
#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||
|
||||
#include "Support/Annotation.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
@ -38,14 +37,12 @@ class Instruction;
|
||||
class Value;
|
||||
class CallArgsDescriptor;
|
||||
|
||||
extern AnnotationID MCFI_AID;
|
||||
|
||||
class MachineCodeForInstruction : public Annotation {
|
||||
class MachineCodeForInstruction {
|
||||
std::vector<Value*> tempVec; // used by m/c instr but not VM instr
|
||||
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
|
||||
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
|
||||
public:
|
||||
MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {}
|
||||
MachineCodeForInstruction() : callArgsDesc(NULL) {}
|
||||
~MachineCodeForInstruction();
|
||||
|
||||
static MachineCodeForInstruction &get(const Instruction *I);
|
||||
|
@ -28,7 +28,6 @@
|
||||
#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||
#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
|
||||
|
||||
#include "Support/Annotation.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
@ -38,14 +37,12 @@ class Instruction;
|
||||
class Value;
|
||||
class CallArgsDescriptor;
|
||||
|
||||
extern AnnotationID MCFI_AID;
|
||||
|
||||
class MachineCodeForInstruction : public Annotation {
|
||||
class MachineCodeForInstruction {
|
||||
std::vector<Value*> tempVec; // used by m/c instr but not VM instr
|
||||
std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
|
||||
CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
|
||||
public:
|
||||
MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {}
|
||||
MachineCodeForInstruction() : callArgsDesc(NULL) {}
|
||||
~MachineCodeForInstruction();
|
||||
|
||||
static MachineCodeForInstruction &get(const Instruction *I);
|
||||
|
Loading…
Reference in New Issue
Block a user