[compiler-rt] r240449 - [msan] Mark one test as only supported on x86
Jay Foad
jay.foad at gmail.com
Tue Jun 23 13:17:45 PDT 2015
Author: foad
Date: Tue Jun 23 15:17:45 2015
New Revision: 240449
URL: http://llvm.org/viewvc/llvm-project?rev=240449&view=rev
Log:
[msan] Mark one test as only supported on x86
Summary: This test uses x86 intrinsics, so it can't work on other platforms.
Reviewers: garious, eugenis, samsonov
Reviewed By: samsonov
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D10652
Modified:
compiler-rt/trunk/test/msan/vector_cvt.cc
Modified: compiler-rt/trunk/test/msan/vector_cvt.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/vector_cvt.cc?rev=240449&r1=240448&r2=240449&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/vector_cvt.cc (original)
+++ compiler-rt/trunk/test/msan/vector_cvt.cc Tue Jun 23 15:17:45 2015
@@ -1,5 +1,6 @@
// RUN: %clangxx_msan -O0 %s -o %t && %run %t
// RUN: %clangxx_msan -DPOSITIVE -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
+// REQUIRES: x86_64-supported-target
#include <emmintrin.h>
More information about the llvm-commits
mailing list