aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <quic_apinski@quicinc.com>2024-02-16 13:26:30 -0800
committerAndrew Pinski <quic_apinski@quicinc.com>2024-02-16 13:57:42 -0800
commitcd503b0616462445381a8232fb753239d319af76 (patch)
treef08a2a8aab4869cec11c74d85a6687cf5482e4b4
parent69efea3e249e0765c8a29c89b8b6938da3f6bb70 (diff)
downloadgcc-cd503b0616462445381a8232fb753239d319af76.zip
gcc-cd503b0616462445381a8232fb753239d319af76.tar.gz
gcc-cd503b0616462445381a8232fb753239d319af76.tar.bz2
Add -Wstrict-aliasing to vector-struct-1.C testcase
As noticed by Marek Polacek in https://gcc.gnu.org/pipermail/gcc-patches/2024-February/645836.html, this testcase was not failing before without -Wstrict-aliasing so let's add that option. Committed as obvious after testing to make sure the test is now testing with `-Wstrict-aliasing` and `-flto`. gcc/testsuite/ChangeLog: * g++.dg/torture/vector-struct-1.C: Add -Wstrict-aliasing. Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r--gcc/testsuite/g++.dg/torture/vector-struct-1.C1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/torture/vector-struct-1.C b/gcc/testsuite/g++.dg/torture/vector-struct-1.C
index e274741..969a801 100644
--- a/gcc/testsuite/g++.dg/torture/vector-struct-1.C
+++ b/gcc/testsuite/g++.dg/torture/vector-struct-1.C
@@ -1,3 +1,4 @@
+/* { dg-options "-Wstrict-aliasing" } */
/* PR c++/97990 */
/* This used to crash with lto and strict aliasing enabled as the
vector type variant still had TYPE_ALIAS_SET set on it. */