From d6a49773ffbe35847baa7a68773ebbb326120dd0 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 16 Aug 2011 21:00:05 +0000 Subject: [PATCH] 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 --- include/llvm/Support/Dwarf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/Support/Dwarf.h b/include/llvm/Support/Dwarf.h index 3c76902c842..fe6b355e4b0 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.