r179050 - The recent GCOV changes expect the initial version string to be in forward order.

Bill Wendling isanbard at gmail.com
Mon Apr 8 13:36:44 PDT 2013


Author: void
Date: Mon Apr  8 15:36:44 2013
New Revision: 179050

URL: http://llvm.org/viewvc/llvm-project?rev=179050&view=rev
Log:
The recent GCOV changes expect the initial version string to be in forward order.

Modified:
    cfe/trunk/include/clang/Frontend/CodeGenOptions.h

Modified: cfe/trunk/include/clang/Frontend/CodeGenOptions.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CodeGenOptions.h?rev=179050&r1=179049&r2=179050&view=diff
==============================================================================
--- cfe/trunk/include/clang/Frontend/CodeGenOptions.h (original)
+++ cfe/trunk/include/clang/Frontend/CodeGenOptions.h Mon Apr  8 15:36:44 2013
@@ -137,7 +137,7 @@ public:
 #include "clang/Frontend/CodeGenOptions.def"
 
     RelocationModel = "pic";
-    memcpy(CoverageVersion, "*204", 4);
+    memcpy(CoverageVersion, "402*", 4);
   }
 };
 





More information about the cfe-commits mailing list