Skip to content

Commit 14f60af

Browse files
committed
make new warning not ignored by default
1 parent 8449ac1 commit 14f60af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Basic/DiagnosticSemaKinds.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10639,7 +10639,7 @@ def err_vector_index_out_of_range : Error<
1063910639
"vector element index %0 is out of bounds">;
1064010640
def warn_vector_index_out_of_range : Warning<
1064110641
err_vector_index_out_of_range.Summary>,
10642-
InGroup<VectorOutOfRange>, DefaultIgnore;
10642+
InGroup<VectorOutOfRange>;
1064310643

1064410644
def err_vec_builtin_non_vector : Error<
1064510645
"%select{first two|all}1 arguments to %0 must be vectors">;

0 commit comments

Comments
 (0)