Changeset 144 for trunk/orca/series.c

Show
Ignore:
Timestamp:
05/11/06 14:23:03 (3 years ago)
Author:
krobillard
Message:

Native arguments are now kept on the stack until after the call and the
result is now always put into a1.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/series.c

    r128 r144  
    866866    else 
    867867    { 
    868         orPick( a1, 0, orRESULT ); 
     868        orPick( a1, 0, a1 ); 
    869869    } 
    870870} 
     
    873873OR_NATIVE( orSecondNative ) 
    874874{ 
    875     orPick( a1, 1, orRESULT ); 
     875    orPick( a1, 1, a1 ); 
    876876} 
    877877 
     
    879879OR_NATIVE( orThirdNative ) 
    880880{ 
    881     orPick( a1, 2, orRESULT ); 
     881    orPick( a1, 2, a1 ); 
    882882} 
    883883 
     
    11581158    } 
    11591159 
    1160     orPick( a1, n, orRESULT ); 
     1160    orPick( a1, n, a1 ); 
    11611161    return; 
    11621162