Explorar o código

* GetDeclaration reflects bitpacked

git-svn-id: trunk@10026 -
michael %!s(int64=17) %!d(string=hai) anos
pai
achega
2197401e66
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      packages/fcl-passrc/src/pastree.pp

+ 4 - 1
packages/fcl-passrc/src/pastree.pp

@@ -1267,7 +1267,10 @@ begin
   Try
     Temp:='record';
     If IsPacked then
-      Temp:='packed '+Temp;
+      if IsBitPacked then
+        Temp:='bitpacked '+Temp
+      else
+        Temp:='packed '+Temp;
     If Full then
       Temp:=Name+' = '+Temp;
     S.Add(Temp);