aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/cp/init.c5
-rw-r--r--gcc/cp/typeck2.c12
-rw-r--r--gcc/testsuite/g++.dg/ubsan/pr95693.C26
3 files changed, 35 insertions, 8 deletions
diff --git a/gcc/cp/init.c b/gcc/cp/init.c
index e6de2e1..3b37c97 100644
--- a/gcc/cp/init.c
+++ b/gcc/cp/init.c
@@ -288,10 +288,7 @@ build_zero_init_1 (tree type, tree nelts, bool static_storage_p,
else if (VECTOR_TYPE_P (type))
init = build_zero_cst (type);
else
- {
- gcc_assert (TYPE_REF_P (type));
- init = build_zero_cst (type);
- }
+ gcc_assert (TYPE_REF_P (type));
/* In all cases, the initializer is a constant. */
if (init)
diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c
index d936250..f4be72f 100644
--- a/gcc/cp/typeck2.c
+++ b/gcc/cp/typeck2.c
@@ -1609,10 +1609,14 @@ process_init_constructor_record (tree type, tree init, int nested, int flags,
warning (OPT_Wmissing_field_initializers,
"missing initializer for member %qD", field);
- if (!zero_init_p (fldtype)
- || skipped < 0)
- next = build_zero_init (fldtype, /*nelts=*/NULL_TREE,
- /*static_storage_p=*/false);
+ if (!zero_init_p (fldtype) || skipped < 0)
+ {
+ if (TYPE_REF_P (fldtype))
+ next = build_zero_cst (fldtype);
+ else
+ next = build_zero_init (fldtype, /*nelts=*/NULL_TREE,
+ /*static_storage_p=*/false);
+ }
else
{
/* The default zero-initialization is fine for us; don't
diff --git a/gcc/testsuite/g++.dg/ubsan/pr95693.C b/gcc/testsuite/g++.dg/ubsan/pr95693.C
new file mode 100644
index 0000000..13f688e
--- /dev/null
+++ b/gcc/testsuite/g++.dg/ubsan/pr95693.C
@@ -0,0 +1,26 @@
+// PR sanitizer/95693
+// { dg-do run }
+// { dg-options "-O2 -fsanitize=undefined -fno-sanitize-recover=undefined" }
+
+int g = 9;
+
+struct A {
+ A () : a(g) {}
+private:
+ int &a;
+};
+
+struct B {
+ A payload;
+};
+
+struct C : public B {
+ C () : B () {}
+ A p;
+};
+
+int
+main ()
+{
+ C t;
+}