http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47872
Summary: Alternative syntax for intrinsics should be documented on separate line Product: gcc Version: 4.6.0 Status: UNCONFIRMED Severity: trivial Priority: P3 Component: libfortran AssignedTo: unassig...@gcc.gnu.org ReportedBy: thenl...@users.sourceforge.net The syntax documentation for the ATAN, BESSEL_JN and BESSEL_YN intrinsic functions lists the alternative calls in one line, e.g.: RESULT = ATAN(X) RESULT = ATAN(Y, X) This should be split into separate lines: RESULT = ATAN(X) RESULT = ATAN(Y, X) or separated with a semicolon: RESULT = ATAN(X); RESULT = ATAN(Y, X)