Friday, November 21, 2008     Register | Login | Search | Contact Us
     

Many of you already received communications about the move of the Cadence user community into cadence.com. And many of you have already joined, with over 4000 registrations in the first two weeks.

The new Cadence Community enhances the ability of Cadence users to connect and collaborate. In addition to moving the community into cadence.com -- enabling single sign-on for community, Sourcelink and Cadence events -- the new site is organized around nine technology segments, giving you easy access to product information, training, forums and blogs. Some of the new features include:
  • Ability to respond to posts via e-mail
  • Technology-specific blogs
  • Latest Web 2.0 social networking capabilities
  • Public profile options
  • Private messaging
  • Friends lists
Visit the new Cadence Community today at www.cadence.com/community and join the discussions!

Registration note: Due to the scope of the enhancements and the new SSO registration system, we were not able to migrate existing cdnusers.org member accounts. So new registrations are required, but this enables a broader set of functionality we think you'll enjoy.

Forum note: Under the guidance of forum moderators, we have taken the 20+ cdnusers.org forums and consolidated them into 11 forums on the new site. Posts have been brought over so you can leverage that posting history. CDNusers forums will be set to read only starting 7/30, and cdnusers.org will be redirected to the new community on 8/4.

Best regards,
Mike and Tom

Michael A. Catrambone - Steering Committee Chairman
Distinguished Engineer
PCB/Mechanical
UTStarcom, Inc.

Tom Diederich
Cadence Community Manager
Home
Forums
Subject: ncvlog queue bug
Posting to forums is available to community members only.
Login or Register
Rate this topic:
   
Author Messages
avidan_e
Posts: 16
Online: User is Offline
12/21/2007 11:07 PM  
Hi, Have a look at the following code: when the queue is defined outside the function I get a compilation error. When it is defined as local, I don't. This looks like a compiler bug. package t; class yy; int a; endclass class x; yy y[$] function u(int e); int d[$] yy y1[$] y1 = y; // the following line passes compilation d = y1.find_index(item) with (item.a == e); // but this one gives compilation error d = y.find_index(item) with (item.a == e); endfunction // u endclass // x endpackage
zeevk
Posts: 9
Online: User is Offline
12/24/2007 2:22 AM  
Hi Avidan,

You are probably right. Please file a service request through sourcelink.cadence.com, so this can be fixed and communicated back to you.

Thanks much,

Zeev.
TAM
Posts: 56
Online: User is Offline
12/24/2007 6:34 AM  
It acts as if the compiler, when processing the "with" clause, is setting its scope to the scope where the queue is declared. Thus the function input 'e' is not seen since it isn't part of the scope where y was declared.

The following does compile for me:

class x;
yy y[$]
protected int tmp_e;
function u(int e);
int d[$]
tmp_e = e;
d = y.find_index(item) with (item.a == tmp_e);
endfunction // u
endclass // x

PS. If you choose *not* file file a bug report, please let us know so we can follow up on this. I don't want to see it forgotten.
avidan_e
Posts: 16
Online: User is Offline
12/27/2007 2:45 AM  
Hi, I choose *not* to file a bug report...I'm putting up the problems I encounter here. I guess its up to you guys to decide which of them are actual bugs that are worth passing onwards... Avidan
Posting to forums is available to community members only.
Login or Register



ActiveForums 3.6
     
Copyright 2006 Cadence Design Systems, Inc.