PR tree-optimization/48483 - Construct from yourself w/o warning
authorMartin Sebor <msebor@redhat.com>
Thu, 25 Mar 2021 22:08:00 +0000 (16:08 -0600)
committerMartin Sebor <msebor@redhat.com>
Thu, 25 Mar 2021 22:08:00 +0000 (16:08 -0600)
gcc/testsuite/ChangeLog:
PR tree-optimization/48483
* g++.dg/warn/uninit-pr48483.C: New test.

gcc/testsuite/g++.dg/warn/uninit-pr48483.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.dg/warn/uninit-pr48483.C b/gcc/testsuite/g++.dg/warn/uninit-pr48483.C
new file mode 100644 (file)
index 0000000..41e8513
--- /dev/null
@@ -0,0 +1,56 @@
+/* PR tree-optimization/48483 - Construct from yourself w/o warning
+   { dg-do compile }
+   { dg-options "-Wall" } */
+
+void sink (int);
+
+struct B
+{
+  int x;
+};
+
+struct A
+{
+  B& b;
+  A (B &x): b(x) { }
+};
+
+__attribute__ ((noipa)) void test_c0_O0 ()
+{
+  A a (a.b);        // { dg-warning "'a.A::b' is used uninitialized" }
+  sink (a.b.x);
+}
+
+__attribute__ ((noipa)) int test_c3_O0 (void)
+{
+  struct S { int a; } s;
+  return s.a;       // { dg-warning "s.test_c3_O0\\\(\\\)::S::a' is used uninitialized" }
+}
+
+#pragma GCC optimize ("1")
+
+__attribute__ ((noipa)) void test_c0_O1 ()
+{
+  A a (a.b);        // { dg-warning "'a.A::b' is used uninitialized" }
+  sink (a.b.x);
+}
+
+__attribute__ ((noipa)) int test_c3_O1 (void)
+{
+  struct S { int a; } s;
+  return s.a;       // { dg-warning "s.test_c3_O1\\\(\\\)::S::a' is used uninitialized" }
+}
+
+#pragma GCC optimize ("2")
+
+__attribute__ ((noipa)) void test_c0_O2 ()
+{
+  A a (a.b);        // { dg-warning "'a.A::b' is used uninitialized" }
+  sink (a.b.x);
+}
+
+__attribute__ ((noipa)) int test_c3_O2 (void)
+{
+  struct S { int a; } s;
+  return s.a;       // { dg-warning "s.test_c3_O2\\\(\\\)::S::a' is used uninitialized" }
+}