Changes between Initial Version and Version 2 of Ticket #1585


Ignore:
Timestamp:
2012-10-11T11:49:09Z (12 years ago)
Author:
Lennart Ochel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1585

    • Property Cc Willi Braun added; jlettau removed
    • Property ComponentBackend
    • Property Priority blockermajor
    • Property Type defectenhancement
  • Ticket #1585 – Description

    initial v2  
    55  input Integer inp;
    66  output Real outp;
    7   Real a = 1.0;
    8   algorithm
     7  protected Real a = 1.0;
     8algorithm
    99  outp := inp * a;
    1010end int2real; 
     
    2121}}}
    2222
    23 // error message when running the makefile:
    24 /*
     23// error message
    2524{{{
    26 $ make -f bug.makefile
    27 gcc  -O3 -falign-functions -msse2 -mfpmath=sse   -I"F:/workspace/OpenModelica/build//include/omc" -I.    -c -o bug.o bug.c
    28 bug.c: In function `residualFunc2':
    29 bug.c:289: error: `$P$PRExloc' undeclared (first use in this function)
    30 bug.c:289: error: (Each undeclared identifier is reported only once
    31 bug.c:289: error: for each function it appears in.)
    32 make: *** [bug.o] Error 1
     25Error processing file: simple.mo
     26Error: Internal error BackendDAETransform.findDiscreteEquation failed.
     27
     28Your model contains a mixed system involving algorithms or other complex-equations.
     29
     30Sorry. Currently are supported only mixed system involving simple equations and boolean variables.
     31
     32Try to break the loop by using the pre operator.
     33Error: Internal error BackendDAETransform.analyseStrongComponentBlock failed
     34Error: Internal error sorting equations(strongComponents failed)
     35Error: Internal error Transformation Module sort components failed!
     36
     37# Error encountered! Exiting...
     38# Please check the error message and the flags.
     39
     40Execution failed!
    3341}}}
    34 */