diff options
author | Manman Ren <manman.ren@gmail.com> | 2013-12-02 20:10:37 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2013-12-02 20:10:37 +0000 |
commit | 61fd59421af9157618a73b4882e8649e743432c1 (patch) | |
tree | 696a1778afa105cc26be6e04f935fc1edcfaaf7b /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 433ad5bc8790b30341035591da1ced69c1042eec (diff) | |
download | bcm5719-llvm-61fd59421af9157618a73b4882e8649e743432c1.tar.gz bcm5719-llvm-61fd59421af9157618a73b4882e8649e743432c1.zip |
Debug Info: Move the constant for Debug Info Version from Dwarf.h to Metadata.h.
Suggested by Eric.
Paired commit with r196144.
llvm-svn: 196145
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index ae7983745ca..792fbfce334 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -265,7 +265,7 @@ void CodeGenModule::Release() { // done, the bitcode linker is not going to see modules with different // version numbers. getModule().addModuleFlag(llvm::Module::Error, "Debug Info Version", - llvm::dwarf::DEBUG_INFO_VERSION); + llvm::DEBUG_METADATA_VERSION); SimplifyPersonality(); |