[libcxx] Do not implicitly #include assert.h
Users should only get the assert() macros if they explicitly include
them.
Found after switching from the GNU C++ stdlib to the LLVM C++ stdlib.
llvm-svn: 372963
diff --git a/libcxx/test/std/experimental/simd/simd.cons/load.pass.cpp b/libcxx/test/std/experimental/simd/simd.cons/load.pass.cpp
index 9440d5a..c678bd5 100644
--- a/libcxx/test/std/experimental/simd/simd.cons/load.pass.cpp
+++ b/libcxx/test/std/experimental/simd/simd.cons/load.pass.cpp
@@ -13,8 +13,9 @@
// [simd.class]
// template <class U, class Flags> simd(const U* mem, Flags f);
-#include <cstdint>
#include <experimental/simd>
+#include <cstdint>
+#include <cassert>
#include "test_macros.h"