** and exp should not be compiled as ^.

This commit is contained in:
Vitor Santos Costa 2009-05-09 23:40:37 -04:00
parent 61973a2be6
commit e5a3150da0

View File

@ -313,8 +313,8 @@ do_not_compile_expressions :- set_value('$c_arith',[]).
'$binaryop'(X<<Y ,<< ,X,Y).
'$binaryop'(X>>Y ,>> ,X,Y).
'$binaryop'(X^Y ,^ ,X,Y).
'$binaryop'(X**Y ,^ ,X,Y).
'$binaryop'(exp(X,Y) ,^ ,X,Y).
'$binaryop'(X**Y ,** ,X,Y).
'$binaryop'(exp(X,Y) ,exp ,X,Y).
'$binaryop'(max(X,Y) ,max ,X,Y).
'$binaryop'(min(X,Y) ,min ,X,Y).
'$binaryop'(gcd(X,Y) ,gcd ,X,Y).