From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13878 invoked by alias); 23 Nov 2011 07:34:12 -0000 Mailing-List: contact archer-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: List-Id: Received: (qmail 13637 invoked by uid 22791); 23 Nov 2011 07:34:11 -0000 X-SWARE-Spam-Status: No, hits=3.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,TW_NX X-Spam-Check-By: sourceware.org MIME-Version: 1.0 Date: Wed, 23 Nov 2011 07:34:00 -0000 Message-ID: Subject: archergdb can't use output command to print Fortran allocatable arrays From: xunxun To: archer@sourceware.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2011-q4/txt/msg00005.txt.bz2 Hi, all When I use archergdb brach archer-jankratochvil-vl to print Fortran allocatable arrays, I found that I can't use the output command: for example, program main implicit none integer :: aaa=1 real(8) :: bbb=3.d0 real(8), allocatable :: ccc(:,:) allocate(ccc(4,5)) ccc=3.4 write(*,*) "Hello World!" deallocate(ccc) stop end program main break after ccc=3.4 run If I type 1) p ccc $3 = (( 3.4000000953674316, 3.4000000953674316, 3.4000000953674316, 3.4000000953674316) ( 3.4000000953674316, 3.4000000953674316, 3.4000000953674316, 3.4000000953674316) ( 3.4000000953674316, 3.4000000953674316, 3.4000000953674316, 3.4000000953674316) ( 3.4000000953674316, 3.4000000953674316, 3.4000000953674316, 3.4000000953674316) ( 3.4000000953674316, 3.4000000953674316, 3.4000000953674316, 3.4000000953674316) ) 2) pt ccc type = real(kind=8) (4,5) 3) whatis ccc type = real(kind=8) (4,5) 4) output ccc Cannot resolve DW_OP_push_object_address for a missing object It's obviours wrong when using the output command. Can this issure be fixed? Thanks. -- Best Regards, xunxun