From b7332b04df5d50c92640c74cfeb138ecb7e3f7ae Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:01 +0000 Subject: Remove upstream files and directories from vendor/libc++/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- .../modulo_valarray_valarray.pass.cpp | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_valarray.pass.cpp (limited to 'test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_valarray.pass.cpp') diff --git a/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_valarray.pass.cpp b/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_valarray.pass.cpp deleted file mode 100644 index 58b78a322091..000000000000 --- a/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_valarray.pass.cpp +++ /dev/null @@ -1,36 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// - -// template class valarray; - -// template valarray operator%(const valarray& x, const valarray& y); - -#include -#include -#include - -int main() -{ - { - typedef int T; - T a1[] = {6, 7, 8, 9, 10}; - T a2[] = {1, 2, 3, 4, 5}; - T a3[] = {0, 1, 2, 1, 0}; - const unsigned N = sizeof(a1)/sizeof(a1[0]); - std::valarray v1(a1, N); - std::valarray v2(a2, N); - std::valarray v3 = v1 % v2; - assert(v1.size() == v2.size()); - assert(v1.size() == v3.size()); - for (std::size_t i = 0; i < v1.size(); ++i) - assert(v3[i] == a3[i]); - } -} -- cgit v1.3