* ada-lang.c (ada_evaluate_subexp) [OP_TYPE]: Return a value with
authorJoel Brobecker <brobecker@gnat.com>
Thu, 4 Jan 2007 06:31:52 +0000 (06:31 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Thu, 4 Jan 2007 06:31:52 +0000 (06:31 +0000)
        the appropriate type rather than a bogus void type.

gdb/ChangeLog
gdb/ada-lang.c

index 56927d793defb39480c71b9bcc637cb2dfab867d..7f47dab3c04b0ab8b20f31dfde1d7f41518cd64b 100644 (file)
@@ -1,3 +1,8 @@
+2007-01-04  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-lang.c (ada_evaluate_subexp) [OP_TYPE]: Return a value with
+       the appropriate type rather than a bogus void type.
+
 2007-01-04  Joel Brobecker  <brobecker@adacore.com>
 
        * ada-lang.h (ada_find_printable_frame): Remove.
index 5b687e342127b3f111ee01e88eb50c50b4fb1f4e..706806efac427851018cfef61d554bc84646fb53 100644 (file)
@@ -8578,7 +8578,7 @@ ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
       if (noside == EVAL_SKIP)
         goto nosideret;
       else if (noside == EVAL_AVOID_SIDE_EFFECTS)
-        return allocate_value (builtin_type_void);
+        return allocate_value (exp->elts[pc + 1].type);
       else
         error (_("Attempt to use a type name as an expression"));