Increment debug info version to accommodate upcoming change in debug info node structure.

llvm-svn: 137751
This commit is contained in:
Devang Patel 2011-08-16 21:00:05 +00:00
parent ffa30ab216
commit 0f9fa8bddc
1 changed files with 2 additions and 1 deletions

View File

@ -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.