From: Devang Patel Date: Tue, 16 Aug 2011 21:00:05 +0000 (+0000) Subject: Increment debug info version to accommodate upcoming change in debug info node structure. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d6a49773ffbe35847baa7a68773ebbb326120dd0;p=oota-llvm.git 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 --- 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.