[llvm-commits] [gcc-plugin] r80093 - /gcc-plugin/trunk/llvm-backend.cpp
Duncan Sands
baldrick at free.fr
Wed Aug 26 07:26:01 PDT 2009
Author: baldrick
Date: Wed Aug 26 09:26:01 2009
New Revision: 80093
URL: http://llvm.org/viewvc/llvm-project?rev=80093&view=rev
Log:
Only use characters that gcc uses in the .ident string,
in case they have special meaning for the assembler.
Modified:
gcc-plugin/trunk/llvm-backend.cpp
Modified: gcc-plugin/trunk/llvm-backend.cpp
URL: http://llvm.org/viewvc/llvm-project/gcc-plugin/trunk/llvm-backend.cpp?rev=80093&r1=80092&r2=80093&view=diff
==============================================================================
--- gcc-plugin/trunk/llvm-backend.cpp (original)
+++ gcc-plugin/trunk/llvm-backend.cpp Wed Aug 26 09:26:01 2009
@@ -512,7 +512,7 @@
IdentString += "\"GCC: ";
IdentString += pkg_version;
IdentString += version_string;
- IdentString += "; LLVM: ";
+ IdentString += " LLVM: ";
IdentString += REVISION;
IdentString += '"';
TheModule->setModuleInlineAsm(IdentString);
More information about the llvm-commits
mailing list