@@ -76,7 +76,7 @@ pub(crate) unsafe fn codegen(
76
76
// __rust_alloc_error_handler_should_panic
77
77
let name = OomStrategy :: SYMBOL ;
78
78
let ll_g = llvm:: LLVMRustGetOrInsertGlobal ( llmod, name. as_ptr ( ) . cast ( ) , name. len ( ) , i8) ;
79
- if tcx. sess . target . default_hidden_visibility {
79
+ if tcx. sess . default_hidden_visibility ( ) {
80
80
llvm:: LLVMRustSetVisibility ( ll_g, llvm:: Visibility :: Hidden ) ;
81
81
}
82
82
let val = tcx. sess . opts . unstable_opts . oom . should_panic ( ) ;
@@ -85,7 +85,7 @@ pub(crate) unsafe fn codegen(
85
85
86
86
let name = NO_ALLOC_SHIM_IS_UNSTABLE ;
87
87
let ll_g = llvm:: LLVMRustGetOrInsertGlobal ( llmod, name. as_ptr ( ) . cast ( ) , name. len ( ) , i8) ;
88
- if tcx. sess . target . default_hidden_visibility {
88
+ if tcx. sess . default_hidden_visibility ( ) {
89
89
llvm:: LLVMRustSetVisibility ( ll_g, llvm:: Visibility :: Hidden ) ;
90
90
}
91
91
let llval = llvm:: LLVMConstInt ( i8, 0 , False ) ;
@@ -130,7 +130,7 @@ fn create_wrapper_function(
130
130
None
131
131
} ;
132
132
133
- if tcx. sess . target . default_hidden_visibility {
133
+ if tcx. sess . default_hidden_visibility ( ) {
134
134
llvm:: LLVMRustSetVisibility ( llfn, llvm:: Visibility :: Hidden ) ;
135
135
}
136
136
if tcx. sess . must_emit_unwind_tables ( ) {
0 commit comments