1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00

Change SHR & SHL to camel case per discussion in https://github.com/QB64-Phoenix-Edition/QB64pe/pull/153

This commit is contained in:
Samuel Gomes 2022-09-01 21:39:30 +05:30
parent 028017b21a
commit a2cd317d6a
2 changed files with 3 additions and 3 deletions

View file

@ -16397,7 +16397,7 @@ FUNCTION evaluatefunc$ (a2$, args AS LONG, typ AS LONG)
' Establish which function (if any!) should be used
IF (sourcetyp AND 511) = 8 THEN ' sourcetyp is the type of data (bits can be examined to get more details)
e$ = "func__" + rotlr_n$ + "8(" + e$
typ& = UBYTETYPE - ISPOINTER ' We force the return type here. This passed back up to the caller
typ& = UBYTETYPE - ISPOINTER ' We force the return type here. This is passed back up to the caller
ELSEIF (sourcetyp AND 511) = 16 THEN
e$ = "func__" + rotlr_n$ + "16(" + e$
typ& = UINTEGERTYPE - ISPOINTER

View file

@ -3668,7 +3668,7 @@ id.hr_syntax = "_AUTODISPLAY"
regid
clearid
id.n = qb64prefix$ + "SHR"
id.n = qb64prefix$ + "ShR" ' a740g: Changed to camel case
id.subfunc = 1
id.callname = "func__shr"
id.args = 2
@ -3678,7 +3678,7 @@ id.hr_syntax = "_SHR(numericalVariable, numericalValue)"
regid
clearid
id.n = qb64prefix$ + "SHL"
id.n = qb64prefix$ + "ShL" ' a740g: Changed to camel case
id.subfunc = 1
id.callname = "func__shl"
id.args = 2