diff options
Diffstat (limited to 'flang/test/Semantics/modfile04.f90')
-rw-r--r-- | flang/test/Semantics/modfile04.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flang/test/Semantics/modfile04.f90 b/flang/test/Semantics/modfile04.f90 index bc4d8d4895ad..9312b756513c 100644 --- a/flang/test/Semantics/modfile04.f90 +++ b/flang/test/Semantics/modfile04.f90 @@ -6,7 +6,7 @@ module m1 end type contains - pure subroutine s(x, y) bind(c) + pure subroutine Ss(x, y) bind(c) logical x intent(inout) y intent(in) x @@ -53,7 +53,7 @@ end module m3 !type::t !end type !contains -!pure subroutine s(x,y) bind(c) +!pure subroutine ss(x,y) bind(c, name="ss") !logical(4),intent(in)::x !real(4),intent(inout)::y !end |