aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-10-06 18:37:31 +0000
committerDevang Patel <dpatel@apple.com>2009-10-06 18:37:31 +0000
commit0feae424692b07197998bd7a451d8da44fd0ac9a (patch)
treefb978c66a7569549d7d345d19272ecb75cfad17b /include/llvm
parent4c45a0c48614b2387855cee4f1e3f99013344ecf (diff)
downloadexternal_llvm-0feae424692b07197998bd7a451d8da44fd0ac9a.zip
external_llvm-0feae424692b07197998bd7a451d8da44fd0ac9a.tar.gz
external_llvm-0feae424692b07197998bd7a451d8da44fd0ac9a.tar.bz2
Add support to handle debug info attached to an instruction.
This is not yet enabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83400 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/DwarfWriter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h
index 46be8d2..e7a2f66 100644
--- a/include/llvm/CodeGen/DwarfWriter.h
+++ b/include/llvm/CodeGen/DwarfWriter.h
@@ -110,9 +110,10 @@ public:
/// RecordInlinedFnEnd - Indicate the end of inlined subroutine.
unsigned RecordInlinedFnEnd(DISubprogram SP);
+ void SetDbgScopeBeginLabels(const MachineInstr *MI, unsigned L);
+ void SetDbgScopeEndLabels(const MachineInstr *MI, unsigned L);
};
-
} // end llvm namespace
#endif