[Done] keyword issue

All bugs related to new C backend
jassing
Addict
Addict
Posts: 1745
Joined: Wed Feb 17, 2010 12:00 am

[Done] keyword issue

Post by jassing »

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
Administrator
Posts: 15965
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: keyword issue

Post by Fred »

EnableASM and DisableASM aren't supported on C backend
jassing
Addict
Addict
Posts: 1745
Joined: Wed Feb 17, 2010 12:00 am

Re: keyword issue

Post by jassing »

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
Administrator
Posts: 15965
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: [Done] keyword issue

Post by Fred »

Fixed, added an explicit message to inform its not available with C backend.
Post Reply