Skip to content
Snippets Groups Projects
  • Erwan Jahier's avatar
    d5870c84
    Fix test the -ec mode in presence of clocked variable. · d5870c84
    Erwan Jahier authored
    Indeed, I've intentionally removed the when statements in clocked local var like this :
    
     var
        v:int;
    
    because the following was producing a syntax error in ecexe:
    
     var
        v:int when c;
    
    But Actually, the right thing to do was to generate the following:
    
     var
        (v:int) when c;
    
    ...
    
    nb : #FAILS=90->89
    d5870c84
    History
    Fix test the -ec mode in presence of clocked variable.
    Erwan Jahier authored
    Indeed, I've intentionally removed the when statements in clocked local var like this :
    
     var
        v:int;
    
    because the following was producing a syntax error in ecexe:
    
     var
        v:int when c;
    
    But Actually, the right thing to do was to generate the following:
    
     var
        (v:int) when c;
    
    ...
    
    nb : #FAILS=90->89