mirror of
https://github.com/irmen/prog8.git
synced 2024-12-25 23:29:55 +00:00
fix error for certain typecasted expressions inside comparisons
This commit is contained in:
parent
bb1bf6a88c
commit
e166329f34
@ -107,8 +107,13 @@ internal fun Program.checkIdentifiers(errors: IErrorReporter, options: Compilati
|
|||||||
internal fun Program.variousCleanups(errors: IErrorReporter, options: CompilationOptions) {
|
internal fun Program.variousCleanups(errors: IErrorReporter, options: CompilationOptions) {
|
||||||
val process = VariousCleanups(this, errors, options)
|
val process = VariousCleanups(this, errors, options)
|
||||||
process.visit(this)
|
process.visit(this)
|
||||||
if(errors.noErrors())
|
if(errors.noErrors()) {
|
||||||
process.applyModifications()
|
if(process.applyModifications()>0) {
|
||||||
|
process.visit(this)
|
||||||
|
if(errors.noErrors())
|
||||||
|
process.applyModifications()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal fun Program.moveMainAndStartToFirst() {
|
internal fun Program.moveMainAndStartToFirst() {
|
||||||
|
@ -3,15 +3,17 @@ TODO
|
|||||||
|
|
||||||
For next release
|
For next release
|
||||||
^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^
|
||||||
- vm codegen: ForLoop
|
|
||||||
- vm codegen: fix primes endless loop stuck on '2'
|
- vm codegen: fix primes endless loop stuck on '2'
|
||||||
- x16: screen_set_mode -> screen_mode + other api https://github.com/commanderx16/x16-docs/blob/master/Commander%20X16%20Programmer's%20Reference%20Guide.md#function-name-screen_mode
|
- x16: check joystick support (petaxian, own stuff) because of api change in r39 kernal https://github.com/commanderx16/x16-docs/blob/master/Commander%20X16%20Programmer's%20Reference%20Guide.md#function-name-joystick_get
|
||||||
|
- x16: screen_set_mode -> screen_mode + other args https://github.com/commanderx16/x16-docs/blob/master/Commander%20X16%20Programmer's%20Reference%20Guide.md#function-name-screen_mode
|
||||||
- optimize diskio load_raw on X16 because headerless files are now supported https://github.com/commanderx16/x16-rom/pull/216
|
- optimize diskio load_raw on X16 because headerless files are now supported https://github.com/commanderx16/x16-rom/pull/216
|
||||||
note: must still work on c64/c128 that don't have this!
|
note: must still work on c64/c128 that don't have this!
|
||||||
- major version bump once X16 r39 rom is officially finalized
|
- major version bump once X16 r39 rom is officially finalized
|
||||||
|
- vm codegen: ForLoop
|
||||||
- vm codegen: When
|
- vm codegen: When
|
||||||
- vm codegen: Pipe expression
|
- vm codegen: Pipe expression
|
||||||
- vm codegen: validate that PtFunctionCall translation works okay with resultregister
|
- vm codegen: validate that PtFunctionCall translation works okay with resultregister
|
||||||
|
- vm codegen: postincrdecr arrayvalue
|
||||||
- vm: support no globals re-init option
|
- vm: support no globals re-init option
|
||||||
- vm codegen/assembler: variable memory locations should also be referenced by the variable name instead of just the address
|
- vm codegen/assembler: variable memory locations should also be referenced by the variable name instead of just the address
|
||||||
- when the vm is stable and *if* its language can get promoted to prog8 IL, the variable allocation should be changed.
|
- when the vm is stable and *if* its language can get promoted to prog8 IL, the variable allocation should be changed.
|
||||||
|
Loading…
Reference in New Issue
Block a user