From a781f4011250a7d6450025a92336250044ab46eb Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 2 Aug 2005 18:03:17 +0000 Subject: 2005-08-02 Frank Ch. Eigler * loc2.c (emit_loc_address): Emit interleaved declaration into its own nested { } block. * tapsets.cxx (literal_stmt_for_local): Emit deref_fault block unconditionally. * tapset/builtin_hexstring.stp: New builtin. * testsuite/buildok/six.stp: New test. --- loc2c.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'loc2c.c') diff --git a/loc2c.c b/loc2c.c index e3cb3724..73f6ee32 100644 --- a/loc2c.c +++ b/loc2c.c @@ -1317,6 +1317,7 @@ emit_loc_address (FILE *out, struct location *loc, unsigned int indent, emit ("%s", loc->address.program); else { + emit ("{\n"); emit ("%*s%s " STACKFMT, (indent + 1) * 2, "", STACK_TYPE, 0); for (unsigned int i = 1; i < loc->address.stack_depth; ++i) emit (", " STACKFMT, i); @@ -1324,6 +1325,7 @@ emit_loc_address (FILE *out, struct location *loc, unsigned int indent, emit ("%s%*s%s = " STACKFMT ";\n", loc->address.program, (indent + 1) * 2, "", target, 0); + emit ("}\n"); } } -- cgit