re PR middle-end/45505 (gfortran.dg/pr25923.f90)

PR fortran/45505
	* gfortran.dg/pr25923.f90: XFAIL warning on wrong line for ilp32.

From-SVN: r163949
This commit is contained in:
Hans-Peter Nilsson 2010-09-07 13:23:24 +00:00 committed by Hans-Peter Nilsson
parent 8683f05192
commit 293cf2174d
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-09-07 Hans-Peter Nilsson <hp@axis.com>
PR fortran/45505
* gfortran.dg/pr25923.f90: XFAIL warning on wrong line for ilp32.
2010-09-07 Jan Hubicka <jh@suse.cz>
* gcc.c-torture/compile/20100907.c: New testcase.

View File

@ -10,7 +10,7 @@ implicit none
contains
function baz(arg) result(res) ! { dg-warning "res.yr' may be" }
function baz(arg) result(res) ! { dg-warning "res.yr' may be" "PR45505" { xfail ilp32 } }
type(bar), intent(in) :: arg
type(bar) :: res
logical, external:: some_func
@ -19,7 +19,7 @@ contains
else
res = arg
end if
end function baz
end function baz ! { dg-bogus "res.yr' may be" "PR45505" { xfail ilp32 } }
end module foo