diff options
author | Devang Patel <dpatel@apple.com> | 2011-08-16 21:00:05 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-08-16 21:00:05 +0000 |
commit | d6a49773ffbe35847baa7a68773ebbb326120dd0 (patch) | |
tree | cd92903a109208353a2b5f3e171cf40e4f9dbcc7 | |
parent | be2ac8ca7bc02f9139c6f8de1ab1db3df743d969 (diff) |
Increment debug info version to accommodate upcoming change in debug info node structure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137751 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/Dwarf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h index 3c76902c84..fe6b355e4b 100644 --- a/include/llvm/Support/Dwarf.h +++ b/include/llvm/Support/Dwarf.h @@ -22,7 +22,8 @@ namespace llvm { // Debug info constants. enum { - LLVMDebugVersion = (10 << 16), // Current version of debug information. + LLVMDebugVersion = (11 << 16), // Current version of debug information. + LLVMDebugVersion10 = (10 << 16), // Constant for version 10. LLVMDebugVersion9 = (9 << 16), // Constant for version 9. LLVMDebugVersion8 = (8 << 16), // Constant for version 8. LLVMDebugVersion7 = (7 << 16), // Constant for version 7. |