From 1f8192b6daf5ed61654c43c2c5c05f9241a83d65 Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 3 May 2013 20:41:55 +0000 Subject: [PATCH] * indention fixes * detabbed git-svn-id: trunk@24412 - --- compiler/aasmbase.pas | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/compiler/aasmbase.pas b/compiler/aasmbase.pas index 1104f3ff83..71d8b7ce00 100644 --- a/compiler/aasmbase.pas +++ b/compiler/aasmbase.pas @@ -195,13 +195,15 @@ interface function ReplaceForbiddenAsmSymbolChars(const s: string): string; - { dummy default noop callback } - procedure default_global_used; - type - TGlobalUsedProcedure = procedure; - { Procedure variable to allow for special handling of - the occurence of use of a global variable, - used by PIC code generation to request GOT loading } + { dummy default noop callback } + procedure default_global_used; + + type + { Procedure variable to allow for special handling of + the occurence of use of a global variable, + used by PIC code generation to request GOT loading } + TGlobalUsedProcedure = procedure; + const global_used : TGlobalUsedProcedure = @default_global_used; @@ -432,7 +434,7 @@ implementation is_set:=false; { write it always } increfs; - global_used; + global_used; end;