From 4763723c75ffbf8c2bc69e07673a0b593d974c3f Mon Sep 17 00:00:00 2001 From: nickysn Date: Sun, 30 Mar 2014 19:36:21 +0000 Subject: [PATCH] + support compact, large and huge memory models in x86/cpubase.segment_regs_equal() git-svn-id: trunk@27392 - --- compiler/x86/cpubase.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/x86/cpubase.pas b/compiler/x86/cpubase.pas index 91f981b430..7e32489859 100644 --- a/compiler/x86/cpubase.pas +++ b/compiler/x86/cpubase.pas @@ -590,7 +590,9 @@ implementation { the remaining are distinct from each other } exit(false); end; - mm_compact,mm_large,mm_huge: internalerror(2013062303); + mm_compact,mm_large,mm_huge: + { all segment registers are different in these models } + exit(false); else internalerror(2013062302); end;