summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2012-04-11 18:01:49 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2012-04-11 18:01:49 +0000
commita25fe04b2aad4f884fa9425c284b8f45847bba83 (patch)
tree16d1827c331d1e0923f3ce0d0aec6550e4a3a434 /compiler
parentf3b305c1c5801a3f07f3067df93d771525f9f6e0 (diff)
downloadfpc-a25fe04b2aad4f884fa9425c284b8f45847bba83.tar.gz
* initialize dirhint field of created tasmconds
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@20800 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler')
-rw-r--r--compiler/powerpc/cpubase.pas1
-rw-r--r--compiler/powerpc64/cpubase.pas1
2 files changed, 2 insertions, 0 deletions
diff --git a/compiler/powerpc/cpubase.pas b/compiler/powerpc/cpubase.pas
index daa764227e..d8a679b116 100644
--- a/compiler/powerpc/cpubase.pas
+++ b/compiler/powerpc/cpubase.pas
@@ -500,6 +500,7 @@ implementation
procedure create_cond_norm(cond: TAsmCondFlag; cr: byte;var r : TasmCond);
begin
+ r.dirhint := DH_None;
r.simple := true;
r.cond := cond;
case cond of
diff --git a/compiler/powerpc64/cpubase.pas b/compiler/powerpc64/cpubase.pas
index 39e31cc3bb..1b749d6a4c 100644
--- a/compiler/powerpc64/cpubase.pas
+++ b/compiler/powerpc64/cpubase.pas
@@ -499,6 +499,7 @@ end;
procedure create_cond_norm(cond: TAsmCondFlag; cr: byte; var r: TasmCond);
begin
+ r.dirhint := DH_None;
r.simple := true;
r.cond := cond;
case cond of