aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-04-08 20:36:44 +0000
committerBill Wendling <isanbard@gmail.com>2013-04-08 20:36:44 +0000
commit493fe6d504a436c0639e641ef7c3c3982cf5feca (patch)
tree04a307216aba9f6d5265d12a68f5c40624937485
parentbf71ba2988b34c45af968f0965e28ac952e4a15f (diff)
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
-rw-r--r--include/clang/Frontend/CodeGenOptions.h2
1 files changed, 1 insertions, 1 deletions
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);
}
};