diff options
| author | Alex Lorenz <arphaman@gmail.com> | 2015-08-19 00:13:25 +0000 |
|---|---|---|
| committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-19 00:13:25 +0000 |
| commit | df9e3c6fb0b94dcff370eb1c840487f6349ac6a5 (patch) | |
| tree | 6bfa02dc92ba4a0db970e96e43f397c00ee9fd4f /llvm/lib/CodeGen/MIRParser/MIParser.h | |
| parent | 861ad97e6f1bd354ec51865587073bd94bea2d64 (diff) | |
| download | bcm5719-llvm-df9e3c6fb0b94dcff370eb1c840487f6349ac6a5.tar.gz bcm5719-llvm-df9e3c6fb0b94dcff370eb1c840487f6349ac6a5.zip | |
MIR Serialization: Serialize MMI's variable debug information.
llvm-svn: 245396
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MIParser.h')
| -rw-r--r-- | llvm/lib/CodeGen/MIRParser/MIParser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MIParser.h b/llvm/lib/CodeGen/MIRParser/MIParser.h index 9e997efa54c..8aef704ab36 100644 --- a/llvm/lib/CodeGen/MIRParser/MIParser.h +++ b/llvm/lib/CodeGen/MIRParser/MIParser.h @@ -23,6 +23,7 @@ class BasicBlock; class MachineBasicBlock; class MachineInstr; class MachineFunction; +class MDNode; struct SlotMapping; class SMDiagnostic; class SourceMgr; @@ -89,6 +90,10 @@ bool parseStackObjectReference(int &FI, SourceMgr &SM, MachineFunction &MF, const PerFunctionMIParsingState &PFS, const SlotMapping &IRSlots, SMDiagnostic &Error); +bool parseMDNode(MDNode *&Node, SourceMgr &SM, MachineFunction &MF, + StringRef Src, const PerFunctionMIParsingState &PFS, + const SlotMapping &IRSlots, SMDiagnostic &Error); + } // end namespace llvm #endif |

