All bugs related to new C backend
jassing
Addict
Posts: 1744 Joined: Wed Feb 17, 2010 12:00 am
Post
by jassing » Fri Jun 09, 2023 12:44 pm
Code: Select all
CompilerIf #PB_Compiler_Backend <> #PB_Backend_C
CompilerError( "compile with C backend" )
CompilerEndIf
EnableASM
DisableASM ; this generates a syntax error
Fred
Administrator
Posts: 15950 Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:
Post
by Fred » Fri Jun 09, 2023 12:48 pm
EnableASM and DisableASM aren't supported on C backend
jassing
Addict
Posts: 1744 Joined: Wed Feb 17, 2010 12:00 am
Post
by jassing » Fri Jun 09, 2023 3:54 pm
Fred wrote: ↑ Fri Jun 09, 2023 12:48 pm
EnableASM and DisableASM aren't supported on C backend
RIGHT! That's my point.
There is an error for "disableasm" but not for "enableasm"
Fred
Administrator
Posts: 15950 Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:
Post
by Fred » Sat Jun 10, 2023 1:01 pm
Fixed, added an explicit message to inform its not available with C backend.