diff options
| author | Bill Wendling <isanbard@gmail.com> | 2011-07-26 18:31:41 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2011-07-26 18:31:41 +0000 |
| commit | 3fe5d685638434a223774d2d0c38d93d2661c53f (patch) | |
| tree | cdecfb2862b3e82f5495ae54b4b37a3297b7ca93 /llvm | |
| parent | edaa35ae6ffa3e23205f3ff2348a026e3d1b2e9e (diff) | |
| download | bcm5719-llvm-3fe5d685638434a223774d2d0c38d93d2661c53f.tar.gz bcm5719-llvm-3fe5d685638434a223774d2d0c38d93d2661c53f.zip | |
Use the correct for for the version. It's little endian and my brain is
obviously big endian. :-)
PR10502
llvm-svn: 136111
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(), |

