summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Dwarf.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-07-19 19:41:54 +0000
committerDevang Patel <dpatel@apple.com>2011-07-19 19:41:54 +0000
commit23336b449eee301f4c4dcabbd75dedf3c75c30fc (patch)
tree755f2dafaaee89f5e3e97ac099a9b313e41b225a /include/llvm/Support/Dwarf.h
parentffa3225e26cc1977d20f0d9649fcd6f38a3c4815 (diff)
downloadllvm-23336b449eee301f4c4dcabbd75dedf3c75c30fc.tar.gz
llvm-23336b449eee301f4c4dcabbd75dedf3c75c30fc.tar.bz2
llvm-23336b449eee301f4c4dcabbd75dedf3c75c30fc.tar.xz
Reapply r135457. This needs llvm-gcc change, that I forgot to check-in yesterday.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Dwarf.h')
-rw-r--r--include/llvm/Support/Dwarf.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h
index 70bac0c9fc..3c76902c84 100644
--- a/include/llvm/Support/Dwarf.h
+++ b/include/llvm/Support/Dwarf.h
@@ -22,8 +22,9 @@ namespace llvm {
// Debug info constants.
enum {
- LLVMDebugVersion = (9 << 16), // Current version of debug information.
- LLVMDebugVersion8 = (8 << 16), // Cconstant for version 8.
+ LLVMDebugVersion = (10 << 16), // Current version of debug information.
+ LLVMDebugVersion9 = (9 << 16), // Constant for version 9.
+ LLVMDebugVersion8 = (8 << 16), // Constant for version 8.
LLVMDebugVersion7 = (7 << 16), // Constant for version 7.
LLVMDebugVersion6 = (6 << 16), // Constant for version 6.
LLVMDebugVersion5 = (5 << 16), // Constant for version 5.