<div dir="ltr"><br><div>I've applied a temporary fix by xfailing the test for big endian hosts.  I'll look at making the gcov reader endian-agnostic (though I'm not sure how useful this is).</div><div><br></div><div>Diego.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 17, 2015 at 3:05 PM, Diego Novillo via llvm-commits <span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: dnovillo<br>
Date: Thu Sep 17 14:05:48 2015<br>
New Revision: 247920<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=247920&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=247920&view=rev</a><br>
Log:<br>
Temporarily fix gcov failures in big-endian hosts.<br>
<br>
This test uses a gcov file generated in a little-endian host. The gcov<br>
reader does not allow different endianness, so the test fails on big<br>
endian hosts.<br>
<br>
XFAILing for now.<br>
<br>
Modified:<br>
    llvm/trunk/test/Transforms/SampleProfile/gcc-simple.ll<br>
<br>
Modified: llvm/trunk/test/Transforms/SampleProfile/gcc-simple.ll<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SampleProfile/gcc-simple.ll?rev=247920&r1=247919&r2=247920&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SampleProfile/gcc-simple.ll?rev=247920&r1=247919&r2=247920&view=diff</a><br>
==============================================================================<br>
--- llvm/trunk/test/Transforms/SampleProfile/gcc-simple.ll (original)<br>
+++ llvm/trunk/test/Transforms/SampleProfile/gcc-simple.ll Thu Sep 17 14:05:48 2015<br>
@@ -1,5 +1,5 @@<br>
 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/gcc-simple.afdo -S | FileCheck %s<br>
-;<br>
+; XFAIL: powerpc64-, s390x, mips-, mips64-, sparc<br>
 ; Original code:<br>
 ;<br>
 ; #include <stdlib.h><br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div>