From 3fe5d685638434a223774d2d0c38d93d2661c53f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 26 Jul 2011 18:31:41 +0000 Subject: Use the correct for for the version. It's little endian and my brain is obviously big endian. :-) PR10502 llvm-svn: 136111 --- llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm') diff --git a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp b/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp index c6dadcfecb6..3a7f21c4ce4 100644 --- a/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp +++ b/llvm/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(), -- cgit v1.2.3