summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Dwarf.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-03-09 00:44:10 +0000
committerDevang Patel <dpatel@apple.com>2010-03-09 00:44:10 +0000
commit4b945500a5eb1b32ee8004e40e386105ee5815eb (patch)
treed80c653fecbdb5081b473c628acb05af4bf2b07d /include/llvm/Support/Dwarf.h
parentcf6f28d84af09b38e96307007cd93760a7ca42d7 (diff)
downloadllvm-4b945500a5eb1b32ee8004e40e386105ee5815eb.tar.gz
llvm-4b945500a5eb1b32ee8004e40e386105ee5815eb.tar.bz2
llvm-4b945500a5eb1b32ee8004e40e386105ee5815eb.tar.xz
Start using DIFile. See updated SourceLevelDebugging.html for more information.
This patch updates LLVMDebugVersion to 8. Debug info descriptors encoded using LLVMDebugVersion 7 is supported. Corresponding llvmgcc and clang FE commits are required. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Dwarf.h')
-rw-r--r--include/llvm/Support/Dwarf.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h
index 5f591d4028..31f4fd223d 100644
--- a/include/llvm/Support/Dwarf.h
+++ b/include/llvm/Support/Dwarf.h
@@ -22,7 +22,8 @@ namespace llvm {
// Debug info constants.
enum {
- LLVMDebugVersion = (7 << 16), // Current version of debug information.
+ LLVMDebugVersion = (8 << 16), // Current version of debug information.
+ LLVMDebugVersion7 = (7 << 16), // Constant for version 7.
LLVMDebugVersion6 = (6 << 16), // Constant for version 6.
LLVMDebugVersion5 = (5 << 16), // Constant for version 5.
LLVMDebugVersion4 = (4 << 16), // Constant for version 4.