소스 검색

* 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);