File tree 1 file changed +0
-18
lines changed
compiler/rustc_codegen_gcc/src
1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -31,18 +31,6 @@ pub(crate) enum PossibleFeature<'a> {
31
31
None ,
32
32
}
33
33
34
- struct ExitCode ( Option < i32 > ) ;
35
-
36
- impl IntoDiagnosticArg for ExitCode {
37
- fn into_diagnostic_arg ( self ) -> DiagArgValue {
38
- let ExitCode ( exit_code) = self ;
39
- match exit_code {
40
- Some ( t) => t. into_diagnostic_arg ( ) ,
41
- None => DiagArgValue :: Str ( Cow :: Borrowed ( "<signal>" ) ) ,
42
- }
43
- }
44
- }
45
-
46
34
#[ derive( Diagnostic ) ]
47
35
#[ diag( codegen_gcc_lto_not_supported) ]
48
36
pub ( crate ) struct LTONotSupported ;
@@ -80,12 +68,6 @@ pub(crate) struct CopyBitcode {
80
68
#[ note]
81
69
pub ( crate ) struct DynamicLinkingWithLTO ;
82
70
83
- #[ derive( Diagnostic ) ]
84
- #[ diag( codegen_gcc_load_bitcode) ]
85
- pub ( crate ) struct LoadBitcode {
86
- name : String ,
87
- }
88
-
89
71
#[ derive( Diagnostic ) ]
90
72
#[ diag( codegen_gcc_lto_disallowed) ]
91
73
pub ( crate ) struct LtoDisallowed ;
You can’t perform that action at this time.
0 commit comments