@@ -1059,41 +1059,32 @@ logical function profile_same(this,that)
1059
1059
1060
1060
select type (other= >that)
1061
1061
type is (profile_config_t)
1062
- print * , ' check name'
1063
1062
if (allocated (this% profile_name).neqv. allocated (other% profile_name)) return
1064
1063
if (allocated (this% profile_name)) then
1065
1064
if (.not. (this% profile_name== other% profile_name)) return
1066
1065
endif
1067
- print * , ' check compiler'
1068
1066
if (allocated (this% compiler).neqv. allocated (other% compiler)) return
1069
1067
if (allocated (this% compiler)) then
1070
1068
if (.not. (this% compiler== other% compiler)) return
1071
1069
endif
1072
- print * , ' check os'
1073
1070
if (this% os_type/= other% os_type) return
1074
- print * , ' check flags'
1075
1071
if (allocated (this% flags).neqv. allocated (other% flags)) return
1076
1072
if (allocated (this% flags)) then
1077
1073
if (.not. (this% flags== other% flags)) return
1078
1074
endif
1079
- print * , ' check cflags'
1080
1075
if (allocated (this% c_flags).neqv. allocated (other% c_flags)) return
1081
1076
if (allocated (this% c_flags)) then
1082
1077
if (.not. (this% c_flags== other% c_flags)) return
1083
1078
endif
1084
- print * , ' check cxxflags'
1085
1079
if (allocated (this% cxx_flags).neqv. allocated (other% cxx_flags)) return
1086
1080
if (allocated (this% cxx_flags)) then
1087
1081
if (.not. (this% cxx_flags== other% cxx_flags)) return
1088
1082
endif
1089
- print * , ' check link'
1090
1083
if (allocated (this% link_time_flags).neqv. allocated (other% link_time_flags)) return
1091
1084
if (allocated (this% link_time_flags)) then
1092
1085
if (.not. (this% link_time_flags== other% link_time_flags)) return
1093
1086
endif
1094
1087
1095
- print * , ' check file scope'
1096
-
1097
1088
if (allocated (this% file_scope_flags).neqv. allocated (other% file_scope_flags)) return
1098
1089
if (allocated (this% file_scope_flags)) then
1099
1090
if (.not. size (this% file_scope_flags)==size (other% file_scope_flags)) return
@@ -1103,7 +1094,6 @@ logical function profile_same(this,that)
1103
1094
end do
1104
1095
endif
1105
1096
1106
- print * , ' check builtin'
1107
1097
if (this% is_built_in.neqv. other% is_built_in) return
1108
1098
1109
1099
class default
@@ -1209,7 +1199,6 @@ subroutine profile_load(self, table, error)
1209
1199
call get_value(table, " profile-name" , self% profile_name)
1210
1200
call get_value(table, " compiler" , self% compiler)
1211
1201
call get_value(table," os-type" ,flag)
1212
- print * , ' OS flag = ' ,flag
1213
1202
call match_os_type(flag, self% os_type)
1214
1203
call get_value(table, " flags" , self% flags)
1215
1204
call get_value(table, " c-flags" , self% c_flags)
0 commit comments