1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-30 05:10:37 +00:00

Added support for _SHR\_SHL functions

This commit is contained in:
Kobolticus 2018-10-29 22:53:36 -04:00 committed by GitHub
parent d9392d842a
commit 761c34a7f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3343,3 +3343,21 @@ id.callname = "func__autodisplay"
id.args = 0
id.ret = LONGTYPE - ISPOINTER
regid
clearid
id.n = "_SHR"
id.subfunc = 1
id.callname = "_SHR"
id.args = 2
id.arg = MKL$(INTEGER64TYPE - ISPOINTER) + MKL$(LONGTYPE - ISPOINTER)
id.ret = INTEGER64TYPE - ISPOINTER
regid
clearid
id.n = "_SHL"
id.subfunc = 1
id.callname = "_SHL"
id.args = 2
id.arg = MKL$(INTEGER64TYPE - ISPOINTER) + MKL$(LONGTYPE - ISPOINTER)
id.ret = INTEGER64TYPE - ISPOINTER
regid