> Given that the intents have only just changed to bit vectors and (I
> believe) have not been used as such yet, I'm guessing "not many".

I should have checked before emailing... zero!

> Though an equivalent thinko could happen in other ways.

Ah yes. Here is an example of such a "thinko":

bool ArgSymbol::isConstant(void) {
   if (intent == INTENT_CONST_IN || intent == INTENT_CONST_REF) {
     return true;
   }
   return (intent == INTENT_BLANK || intent == INTENT_CONST) &&
     !isReferenceType(type) &&
     !isRecordWrappedType(type) /* array, domain, distribution */;
}

Vass

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
Chapel-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/chapel-developers

Reply via email to