diff options
author | peter <peter@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2006-11-03 00:30:30 +0000 |
---|---|---|
committer | peter <peter@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2006-11-03 00:30:30 +0000 |
commit | 1d1f956fbaa7686c0f8e6f04b332b0ae4201a73b (patch) | |
tree | 0aee882f4907b996609ff1ea2235b51247649e69 /compiler/ncgbas.pas | |
parent | a70169658701604bb86a8fe60b25ad96636b4803 (diff) | |
download | fpc-1d1f956fbaa7686c0f8e6f04b332b0ae4201a73b.tar.gz |
* remove tdictionary and tindexarray
* symtables based on TFPHashObjectList and TFPObjectList
* rename torddef.typ to torddef.ordtype
* rename tfloatdef.typ to tfloatdef.floattype
* rename tdef.deftype to tdef.typ
* remove obsolete browser code, browcol is kept so the ide
can still be compiled
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@5192 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/ncgbas.pas')
-rw-r--r-- | compiler/ncgbas.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ncgbas.pas b/compiler/ncgbas.pas index 635dd9cece..c7f6dce5b0 100644 --- a/compiler/ncgbas.pas +++ b/compiler/ncgbas.pas @@ -382,7 +382,7 @@ interface end else if tempinfo^.may_be_in_reg then begin - if tempinfo^.typedef.deftype=floatdef then + if tempinfo^.typedef.typ=floatdef then begin {$ifdef x86} if use_sse(tempinfo^.typedef) then |