File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ extension Driver {
70
70
return supportedArgs
71
71
}
72
72
} catch {
73
- diagnosticsEngine. emit ( . warning_inprocess_supported_features_query_failed ( error. localizedDescription) )
73
+ diagnosticsEngine. emit ( . remark_inprocess_supported_features_query_failed ( error. localizedDescription) )
74
74
}
75
75
76
76
// Fallback: Invoke `swift-frontend -emit-supported-features` and decode the output
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ extension Driver {
256
256
return targetInfo
257
257
}
258
258
} catch {
259
- diagnosticsEngine. emit ( . warning_inprocess_target_info_query_failed ( error. localizedDescription) )
259
+ diagnosticsEngine. emit ( . remark_inprocess_target_info_query_failed ( error. localizedDescription) )
260
260
}
261
261
262
262
// Fallback: Invoke `swift-frontend -print-target-info` and decode the output
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ extension Diagnostic.Message {
51
51
. warning( " inferring simulator environment for target ' \( originalTriple. triple) '; use '-target \( inferredTriple. triple) ' instead " )
52
52
}
53
53
54
- static func warning_inprocess_target_info_query_failed ( _ error: String ) -> Diagnostic . Message {
55
- . warning ( " In-process target-info query failed ( \( error) ). Using fallback mechanism. " )
54
+ static func remark_inprocess_target_info_query_failed ( _ error: String ) -> Diagnostic . Message {
55
+ . remark ( " In-process target-info query failed ( \( error) ). Using fallback mechanism. " )
56
56
}
57
57
58
- static func warning_inprocess_supported_features_query_failed ( _ error: String ) -> Diagnostic . Message {
59
- . warning ( " In-process supported-compiler-features query failed ( \( error) ). Using fallback mechanism. " )
58
+ static func remark_inprocess_supported_features_query_failed ( _ error: String ) -> Diagnostic . Message {
59
+ . remark ( " In-process supported-compiler-features query failed ( \( error) ). Using fallback mechanism. " )
60
60
}
61
61
62
62
static func error_argument_not_allowed_with( arg: String , other: String ) -> Diagnostic . Message {
You can’t perform that action at this time.
0 commit comments