Skip to content

Commit db9c40c

Browse files
committed
ci changes
Signed-off-by: Karan Janthe <[email protected]>
1 parent 7374020 commit db9c40c

File tree

2 files changed

+20
-21
lines changed

2 files changed

+20
-21
lines changed

compiler/rustc_codegen_llvm/src/llvm/enzyme_ffi.rs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -195,50 +195,50 @@ pub(crate) mod Fallback_AD {
195195
use super::{CConcreteType, CTypeTreeRef, Context};
196196

197197
// TypeTree function fallbacks
198-
pub(crate) fn EnzymeNewTypeTree() -> CTypeTreeRef {
199-
unsafe { unimplemented!() }
198+
pub(crate) unsafe fn EnzymeNewTypeTree() -> CTypeTreeRef {
199+
unimplemented!()
200200
}
201201

202-
pub(crate) fn EnzymeNewTypeTreeCT(arg1: CConcreteType, ctx: &Context) -> CTypeTreeRef {
203-
unsafe { unimplemented!() }
202+
pub(crate) unsafe fn EnzymeNewTypeTreeCT(arg1: CConcreteType, ctx: &Context) -> CTypeTreeRef {
203+
unimplemented!()
204204
}
205205

206-
pub(crate) fn EnzymeNewTypeTreeTR(arg1: CTypeTreeRef) -> CTypeTreeRef {
207-
unsafe { unimplemented!() }
206+
pub(crate) unsafe fn EnzymeNewTypeTreeTR(arg1: CTypeTreeRef) -> CTypeTreeRef {
207+
unimplemented!()
208208
}
209209

210-
pub(crate) fn EnzymeFreeTypeTree(CTT: CTypeTreeRef) {
211-
unsafe { unimplemented!() }
210+
pub(crate) unsafe fn EnzymeFreeTypeTree(CTT: CTypeTreeRef) {
211+
unimplemented!()
212212
}
213213

214-
pub(crate) fn EnzymeMergeTypeTree(arg1: CTypeTreeRef, arg2: CTypeTreeRef) -> bool {
215-
unsafe { unimplemented!() }
214+
pub(crate) unsafe fn EnzymeMergeTypeTree(arg1: CTypeTreeRef, arg2: CTypeTreeRef) -> bool {
215+
unimplemented!()
216216
}
217217

218-
pub(crate) fn EnzymeTypeTreeOnlyEq(arg1: CTypeTreeRef, pos: i64) {
219-
unsafe { unimplemented!() }
218+
pub(crate) unsafe fn EnzymeTypeTreeOnlyEq(arg1: CTypeTreeRef, pos: i64) {
219+
unimplemented!()
220220
}
221221

222-
pub(crate) fn EnzymeTypeTreeData0Eq(arg1: CTypeTreeRef) {
223-
unsafe { unimplemented!() }
222+
pub(crate) unsafe fn EnzymeTypeTreeData0Eq(arg1: CTypeTreeRef) {
223+
unimplemented!()
224224
}
225225

226-
pub(crate) fn EnzymeTypeTreeShiftIndiciesEq(
226+
pub(crate) unsafe fn EnzymeTypeTreeShiftIndiciesEq(
227227
arg1: CTypeTreeRef,
228228
data_layout: *const c_char,
229229
offset: i64,
230230
max_size: i64,
231231
add_offset: u64,
232232
) {
233-
unsafe { unimplemented!() }
233+
unimplemented!()
234234
}
235235

236-
pub(crate) fn EnzymeTypeTreeToString(arg1: CTypeTreeRef) -> *const c_char {
237-
unsafe { unimplemented!() }
236+
pub(crate) unsafe fn EnzymeTypeTreeToString(arg1: CTypeTreeRef) -> *const c_char {
237+
unimplemented!()
238238
}
239239

240-
pub(crate) fn EnzymeTypeTreeToStringFree(arg1: *const c_char) {
241-
unsafe { unimplemented!() }
240+
pub(crate) unsafe fn EnzymeTypeTreeToStringFree(arg1: *const c_char) {
241+
unimplemented!()
242242
}
243243

244244
pub(crate) fn set_inline(val: bool) {

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2673,5 +2673,4 @@ unsafe extern "C" {
26732673

26742674
pub(crate) fn LLVMRustSetNoSanitizeAddress(Global: &Value);
26752675
pub(crate) fn LLVMRustSetNoSanitizeHWAddress(Global: &Value);
2676-
26772676
}

0 commit comments

Comments
 (0)