From aee568e6fc01c403642028a5c5f33b46415690f3 Mon Sep 17 00:00:00 2001 From: nickysn Date: Fri, 4 Jul 2014 13:14:06 +0000 Subject: [PATCH] * cs_hugeptr_normalization renamed to cs_hugeptr_arithmetic_normalization, because we're going to also introduce cs_hugeptr_comparison_normalization as an independent option git-svn-id: trunk@28149 - --- compiler/globtype.pas | 2 +- compiler/i8086/n8086add.pas | 2 +- compiler/scandir.pas | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/globtype.pas b/compiler/globtype.pas index 9f55c4e2ea..33d7e47e58 100644 --- a/compiler/globtype.pas +++ b/compiler/globtype.pas @@ -146,7 +146,7 @@ interface cs_zerobasedstrings, { i8086 specific } cs_force_far_calls, - cs_hugeptr_normalization + cs_hugeptr_arithmetic_normalization ); tlocalswitches = set of tlocalswitch; diff --git a/compiler/i8086/n8086add.pas b/compiler/i8086/n8086add.pas index f740996b72..0282fed271 100644 --- a/compiler/i8086/n8086add.pas +++ b/compiler/i8086/n8086add.pas @@ -334,7 +334,7 @@ interface internalerror(2014070301); end; - if cs_hugeptr_normalization in current_settings.localswitches then + if cs_hugeptr_arithmetic_normalization in current_settings.localswitches then procname:=procname+'_normalized'; if is_hugepointer(left.resultdef) then diff --git a/compiler/scandir.pas b/compiler/scandir.pas index 3a55ce1795..a56dbe0be0 100644 --- a/compiler/scandir.pas +++ b/compiler/scandir.pas @@ -1579,7 +1579,7 @@ unit scandir; Message(scan_w_hugepointernormalization_not_support); exit; end; - do_localswitch(cs_hugeptr_normalization); + do_localswitch(cs_hugeptr_arithmetic_normalization); end; procedure dir_weakpackageunit;