瀏覽代碼

* GetDeclaration reflects bitpacked

git-svn-id: trunk@10026 -
michael 17 年之前
父節點
當前提交
2197401e66
共有 1 個文件被更改,包括 4 次插入1 次删除
  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);