[llvm-commits] [llvm] r137751 - /llvm/trunk/include/llvm/Support/Dwarf.h
Devang Patel
dpatel at apple.com
Tue Aug 16 14:00:05 PDT 2011
Author: dpatel
Date: Tue Aug 16 16:00:05 2011
New Revision: 137751
URL: http://llvm.org/viewvc/llvm-project?rev=137751&view=rev
Log:
Increment debug info version to accommodate upcoming change in debug info node structure.
Modified:
llvm/trunk/include/llvm/Support/Dwarf.h
Modified: llvm/trunk/include/llvm/Support/Dwarf.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Dwarf.h?rev=137751&r1=137750&r2=137751&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Dwarf.h (original)
+++ llvm/trunk/include/llvm/Support/Dwarf.h Tue Aug 16 16:00:05 2011
@@ -22,7 +22,8 @@
// 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.
More information about the llvm-commits
mailing list