Skip to content

Commit 9ed2bc1

Browse files
committed
gas64 : Fixed the signature returned in the debug information is not the signature of the currently compiled FBC source code version. For example, if you use a compiler with a compiler signature of "freebasic 1.08.1" to compile the FBC source code with a signature of "freebasic 1.07.3", the signature returned in the debugging information of the compiled FBC source code is "freebasic 1.08.1".
1 parent 0e9bfbf commit 9ed2bc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/ir-gas64.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ sub edbgemitheader_asm64( byval filename as zstring ptr )
887887
dbg_addstab ("DUMMY",0)
888888

889889
''placeholder for information like compiler version, etc
890-
dbg_addstab (__FB_SIGNATURE__,255)
890+
dbg_addstab (FB_SIGN,255)
891891

892892
'' directory
893893
if( pathIsAbsolute( filename ) = FALSE ) then

0 commit comments

Comments
 (0)