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. --- .../valarray.binary/divide_valarray_value.pass.cpp | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp (limited to 'test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp') diff --git a/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp b/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp deleted file mode 100644 index 0b692aa35a2d..000000000000 --- a/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp +++ /dev/null @@ -1,33 +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 T& y); - -#include -#include -#include - -int main() -{ - { - typedef int T; - T a1[] = {6, 12, 18, 24, 30}; - T a2[] = {1, 2, 3, 4, 5}; - const unsigned N = sizeof(a1)/sizeof(a1[0]); - std::valarray v1(a1, N); - std::valarray v2 = v1 / 6; - assert(v1.size() == v2.size()); - for (std::size_t i = 0; i < v2.size(); ++i) - assert(v2[i] == a2[i]); - } -} -- cgit v1.3