[compiler-rt] r278516 - [mips] Remove obstack.cc XFAIL added in r278504 since it broke X86 and PPC somehow.

Daniel Sanders via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 12 08:34:35 PDT 2016


Author: dsanders
Date: Fri Aug 12 10:34:35 2016
New Revision: 278516

URL: http://llvm.org/viewvc/llvm-project?rev=278516&view=rev
Log:
[mips] Remove obstack.cc XFAIL added in r278504 since it broke X86 and PPC somehow.

Adding the XFAIL has caused msan to report a different line number in the call
stack (@LINE-3 rather than @LINE-30). The new line number looks more correct
at first glance since it's the line that uses uninitialized memory rather than
the first non-whitespace line of the file but this needs investigating.


Modified:
    compiler-rt/trunk/test/msan/Linux/obstack.cc

Modified: compiler-rt/trunk/test/msan/Linux/obstack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/Linux/obstack.cc?rev=278516&r1=278515&r2=278516&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/Linux/obstack.cc (original)
+++ compiler-rt/trunk/test/msan/Linux/obstack.cc Fri Aug 12 10:34:35 2016
@@ -1,8 +1,6 @@
 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
 // RUN: %clangxx_msan -O0 -g -DPOSITIVE %s -o %t && not %run %t |& FileCheck %s
 
-// XFAIL: target-is-mips64el
-
 #include <obstack.h>
 #include <sanitizer/msan_interface.h>
 #include <stdlib.h>




More information about the llvm-commits mailing list