X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg77.f-torture%2Fexecute%2F19990313-0.f;fp=gcc%2Ftestsuite%2Fg77.f-torture%2Fexecute%2F19990313-0.f;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=abf898fb79305fbe034efce7ee26ef8eb669e76e;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g77.f-torture/execute/19990313-0.f b/gcc/testsuite/g77.f-torture/execute/19990313-0.f deleted file mode 100644 index abf898fb..00000000 --- a/gcc/testsuite/g77.f-torture/execute/19990313-0.f +++ /dev/null @@ -1,33 +0,0 @@ -* To: craig@jcb-sc.com -* Subject: Re: G77 and KIND=2 -* Content-Type: text/plain; charset=us-ascii -* From: Dave Love -* Date: 03 Mar 1999 18:20:11 +0000 -* In-Reply-To: craig@jcb-sc.com's message of "1 Mar 1999 21:04:38 -0000" -* User-Agent: Gnus/5.07007 (Pterodactyl Gnus v0.70) Emacs/20.3 -* X-UIDL: d442bafe961c2a6ec6904f492e05d7b0 -* -* ISTM that there is a real problem printing integer*8 (on x86): -* -* $ cat x.f -*[modified for test suite] - integer *8 foo, bar - data r/4e10/ - foo = 4e10 - bar = r - if (foo .ne. bar) call abort - end -* $ g77 x.f && ./a.out -* 1345294336 -* 123 -* $ f2c x.f && g77 x.c && ./a.out -* x.f: -* MAIN: -* 40000000000 -* 123 -* $ -* -* Gdb shows the upper half of the buffer passed to do_lio is zeroed in -* the g77 case. -* -* I've forgotten how the code generation happens.