summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-07-26 18:31:41 +0000
committerBill Wendling <isanbard@gmail.com>2011-07-26 18:31:41 +0000
commit726f1b90a9e9149227a9aa37a2219f167776f804 (patch)
tree1b2e0abad1980f9f327f9e0e29a144fe805716c5
parent189610f9466686a91fb7d847b572e1645c785323 (diff)
downloadllvm-726f1b90a9e9149227a9aa37a2219f167776f804.tar.gz
llvm-726f1b90a9e9149227a9aa37a2219f167776f804.tar.bz2
llvm-726f1b90a9e9149227a9aa37a2219f167776f804.tar.xz
Use the correct for for the version. It's little endian and my brain is
obviously big endian. :-) PR10502 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136111 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Instrumentation/GCOVProfiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/lib/Transforms/Instrumentation/GCOVProfiling.cpp
index c6dadcfecb..3a7f21c4ce 100644
--- a/lib/Transforms/Instrumentation/GCOVProfiling.cpp
+++ b/lib/Transforms/Instrumentation/GCOVProfiling.cpp
@@ -377,7 +377,7 @@ void GCOVProfiler::emitGCNO(DebugInfoFinder &DIF) {
if (!Use402Format)
out->write("oncg*404MVLL", 12);
else
- out->write("oncg*402MVLL", 12);
+ out->write("oncg*204MVLL", 12);
}
for (DebugInfoFinder::iterator SPI = DIF.subprogram_begin(),