Skip to content

Commit 3bb74d6

Browse files
committed
ifort fix
Revert "ifort fix" This reverts commit 8f16217. remove pure
1 parent aa5beee commit 3bb74d6

10 files changed

+10
-10
lines changed

test/linalg/test_linalg_determinant.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ module test_linalg_determinant
145145
#:endfor
146146

147147
! gcc-15 bugfix utility
148-
pure subroutine add_test(tests,new_test)
148+
subroutine add_test(tests,new_test)
149149
type(unittest_type), allocatable, intent(inout) :: tests(:)
150150
type(unittest_type), intent(in) :: new_test
151151

test/linalg/test_linalg_inverse.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ module test_linalg_inverse
292292
#:endfor
293293

294294
! gcc-15 bugfix utility
295-
pure subroutine add_test(tests,new_test)
295+
subroutine add_test(tests,new_test)
296296
type(unittest_type), allocatable, intent(inout) :: tests(:)
297297
type(unittest_type), intent(in) :: new_test
298298

test/linalg/test_linalg_lstsq.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ module test_linalg_least_squares
140140
end subroutine test_issue_823
141141

142142
! gcc-15 bugfix utility
143-
pure subroutine add_test(tests,new_test)
143+
subroutine add_test(tests,new_test)
144144
type(unittest_type), allocatable, intent(inout) :: tests(:)
145145
type(unittest_type), intent(in) :: new_test
146146

test/linalg/test_linalg_mnorm.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ module test_linalg_mnorm
136136
#:endfor
137137

138138
! gcc-15 bugfix utility
139-
pure subroutine add_test(tests,new_test)
139+
subroutine add_test(tests,new_test)
140140
type(unittest_type), allocatable, intent(inout) :: tests(:)
141141
type(unittest_type), intent(in) :: new_test
142142

test/linalg/test_linalg_norm.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ module test_linalg_norm
269269
#:endfor
270270

271271
! gcc-15 bugfix utility
272-
pure subroutine add_test(tests,new_test)
272+
subroutine add_test(tests,new_test)
273273
type(unittest_type), allocatable, intent(inout) :: tests(:)
274274
type(unittest_type), intent(in) :: new_test
275275

test/linalg/test_linalg_pseudoinverse.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ module test_linalg_pseudoinverse
219219
#:endfor
220220

221221
! gcc-15 bugfix utility
222-
pure subroutine add_test(tests,new_test)
222+
subroutine add_test(tests,new_test)
223223
type(unittest_type), allocatable, intent(inout) :: tests(:)
224224
type(unittest_type), intent(in) :: new_test
225225

test/linalg/test_linalg_qr.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ module test_linalg_qr
111111
#:endfor
112112

113113
! gcc-15 bugfix utility
114-
pure subroutine add_test(tests,new_test)
114+
subroutine add_test(tests,new_test)
115115
type(unittest_type), allocatable, intent(inout) :: tests(:)
116116
type(unittest_type), intent(in) :: new_test
117117

test/linalg/test_linalg_schur.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ module test_linalg_schur
208208
#:endfor
209209

210210
! gcc-15 bugfix utility
211-
pure subroutine add_test(tests,new_test)
211+
subroutine add_test(tests,new_test)
212212
type(unittest_type), allocatable, intent(inout) :: tests(:)
213213
type(unittest_type), intent(in) :: new_test
214214

test/linalg/test_linalg_solve.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ module test_linalg_solve
152152
#:endfor
153153

154154
! gcc-15 bugfix utility
155-
pure subroutine add_test(tests,new_test)
155+
subroutine add_test(tests,new_test)
156156
type(unittest_type), allocatable, intent(inout) :: tests(:)
157157
type(unittest_type), intent(in) :: new_test
158158

test/linalg/test_linalg_svd.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ module test_linalg_svd
265265
#:endfor
266266

267267
! gcc-15 bugfix utility
268-
pure subroutine add_test(tests,new_test)
268+
subroutine add_test(tests,new_test)
269269
type(unittest_type), allocatable, intent(inout) :: tests(:)
270270
type(unittest_type), intent(in) :: new_test
271271

0 commit comments

Comments
 (0)