Commit d4d3e882 by Jeffrey Oldham Committed by Toon Moene

ff90-1.f (s): Fix reference of variable z, should be x.

2001-08-02  Jeffrey Oldham  <oldham@codesourcery.com>

	* g77.dg/ff90-1.f (s): Fix reference of variable z,
	should be x.

From-SVN: r44582
parent 026c3f13
2001-08-02 Jeffrey Oldham <oldham@codesourcery.com>
* g77.dg/ff90-1.f (s): Fix reference of variable z,
should be x.
2001-08-02 Nathan Sidwell <nathan@codesourcery.com>
Kill -fhonor-std.
......
......@@ -11,5 +11,5 @@ C { dg-options "-ff90" }
end
subroutine s(x)
double precision x
if ( abs(z-2.0d0) .gt. 1.0e-5 ) call abort
if ( abs(x-2.0d0) .gt. 1.0e-5 ) call abort
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment