From 806bf0b88e08bfbb541aa0a816f6a416c8cd69b2 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Tue, 1 Apr 2014 21:41:14 +0000 Subject: [PATCH] - removed storing/loading unused byte for tprocdef.fpu_used git-svn-id: trunk@27434 - --- compiler/symdef.pas | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/symdef.pas b/compiler/symdef.pas index fa0af6d38b..c531117cee 100644 --- a/compiler/symdef.pas +++ b/compiler/symdef.pas @@ -4257,8 +4257,6 @@ implementation minparacount:=0; maxparacount:=0; ppufile.getderef(returndefderef); -{ TODO: remove fpu_used loading} - ppufile.getbyte; proctypeoption:=tproctypeoption(ppufile.getbyte); proccalloption:=tproccalloption(ppufile.getbyte); ppufile.getnormalset(procoptions); @@ -4284,7 +4282,6 @@ implementation ppufile.putderef(returndefderef); oldintfcrc:=ppufile.do_interface_crc; ppufile.do_interface_crc:=false; - ppufile.putbyte(0); ppufile.putbyte(ord(proctypeoption)); ppufile.putbyte(ord(proccalloption)); ppufile.putnormalset(procoptions);