We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f390170 commit cc186f4Copy full SHA for cc186f4
compiler-rt/lib/msan/tests/msan_test.cpp
@@ -4132,6 +4132,9 @@ typedef U4 V2x32 __attribute__((__vector_size__(8)));
4132
typedef U2 V4x16 __attribute__((__vector_size__(8)));
4133
typedef U1 V8x8 __attribute__((__vector_size__(8)));
4134
4135
+#pragma clang diagnostic push
4136
+#pragma clang diagnostic ignored "-Wdeprecate-lax-vec-conv-all"
4137
+
4138
V8x16 shift_sse2_left_scalar(V8x16 x, U4 y) {
4139
return _mm_slli_epi16(x, y);
4140
}
@@ -4346,6 +4349,8 @@ TEST(VectorCmpTest, builtin_ia32_ucomisdlt) {
4346
4349
EXPECT_NOT_POISONED(c);
4347
4350
4348
4351
4352
4353
4354
#endif // defined(__x86_64__) && defined(__clang__)
4355
4356
TEST(MemorySanitizerOrigins, SetGet) {
0 commit comments