[libcxx] fix `>> 42` UB in <experimental/simd>

llvm-svn: 338325
This commit is contained in:
Tim Shen 2018-07-30 23:05:40 +00:00
parent 931e879cef
commit f72252e679
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ void test_access() {
}
{
auto c = a;
(void)(a[0] + (c[0] >>= a[0]));
(void)(a[0] + (c[0] >>= b[0]));
}
{
auto c = a;