Hi,

We've seen two internal compiler errors:

1. The loop
      for param c in 1..ndim {
        /* some initialization/setup */
        if (c == cbase) then continue;
        /* other stuff */
      }
    caused a compiler error SC01104.  It makes sense given the loop
    unrolling, but technically the spec doesn't forbid the use of a
    continue ...

2. We had a program which would compile and run successfully using
    QuickSort from Sort.chpl, but substituting HeapSort or MergeSort
    (with no other code changes) raised internal error MIS0386.
    We ended up needing a custom sorting routine, though, and no
    longer call any of the Sort procedures, so we don't have a test
    case for it (sorry).

Greg K.



------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
Chapel-bugs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/chapel-bugs

Reply via email to