--- gcc/cp/semantics.c.jj	2012-06-27 16:36:03.000000000 +0200
+++ gcc/cp/semantics.c	2012-07-02 10:22:26.377925168 +0200
@@ -571,6 +571,9 @@ finish_goto_stmt (tree destination)
 				    tf_warning_or_error);
 	  if (error_operand_p (destination))
 	    return NULL_TREE;
+	  destination
+	    = fold_build_cleanup_point_expr (TREE_TYPE (destination),
+					     destination);
 	}
     }
 
--- gcc/testsuite/g++.dg/ext/label14.C.jj	2012-07-02 10:28:14.305949165 +0200
+++ gcc/testsuite/g++.dg/ext/label14.C	2012-07-02 10:27:11.000000000 +0200
@@ -0,0 +1,17 @@
+// PR c++/53812
+// { dg-do compile }
+// { dg-options "" }
+
+struct T { T () : t(0) {}; int t; ~T (); };
+struct S { void *operator [] (T); };
+void bar (S &, void *, void *);
+
+void
+foo (S &x, T &y)
+{
+  bar (x, &&l1, &&l2);
+l1:
+  goto *x[y];
+l2:
+  bar (x, &&l1, &&l2);
+}
