From 11e5641089a37cb5bae48e314d1c1297a546540e Mon Sep 17 00:00:00 2001 From: Cary R Date: Thu, 27 Jun 2013 12:59:33 -0700 Subject: [PATCH] A real task/function port is also signed. --- parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.y b/parse.y index 20e62f77e..70eb07bd3 100644 --- a/parse.y +++ b/parse.y @@ -1736,7 +1736,7 @@ tf_port_declaration /* IEEE1800-2005: A.2.7 */ /* Ports can be real or realtime. */ | port_direction real_or_realtime list_of_identifiers ';' - { vector*tmp = pform_make_task_ports(@1, $1, IVL_VT_REAL, false, + { vector*tmp = pform_make_task_ports(@1, $1, IVL_VT_REAL, true, 0, $3); $$ = tmp; }