[compiler-rt] r230996 - [Sanitizer] Restrict open_memstream to x86_64. Fixes PR22714.
Alexey Samsonov
vonosmas at gmail.com
Mon Mar 2 11:34:03 PST 2015
Author: samsonov
Date: Mon Mar 2 13:34:02 2015
New Revision: 230996
URL: http://llvm.org/viewvc/llvm-project?rev=230996&view=rev
Log:
[Sanitizer] Restrict open_memstream to x86_64. Fixes PR22714.
Modified:
compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/open_memstream.cc
Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/open_memstream.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/open_memstream.cc?rev=230996&r1=230995&r2=230996&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/open_memstream.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/open_memstream.cc Mon Mar 2 13:34:02 2015
@@ -1,5 +1,6 @@
// RUN: %clangxx -m64 -O0 -g -xc++ %s -o %t && %run %t
// RUN: %clangxx -m64 -O3 -g -xc++ %s -o %t && %run %t
+// REQUIRES: x86_64-supported-target
#include <assert.h>
#include <stdio.h>
More information about the llvm-commits
mailing list