From: Bill Wendling Date: Mon, 8 Apr 2013 20:36:44 +0000 (+0000) Subject: The recent GCOV changes expect the initial version string to be in forward order. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=493fe6d504a436c0639e641ef7c3c3982cf5feca;p=clang The recent GCOV changes expect the initial version string to be in forward order. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179050 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Frontend/CodeGenOptions.h b/include/clang/Frontend/CodeGenOptions.h index d0bbf30918..db6b418673 100644 --- a/include/clang/Frontend/CodeGenOptions.h +++ b/include/clang/Frontend/CodeGenOptions.h @@ -137,7 +137,7 @@ public: #include "clang/Frontend/CodeGenOptions.def" RelocationModel = "pic"; - memcpy(CoverageVersion, "*204", 4); + memcpy(CoverageVersion, "402*", 4); } };