Skip to content

Commit 53ead1b

Browse files
committed
move simd intrinsics to their own file
1 parent 52a6ac9 commit 53ead1b

File tree

3 files changed

+620
-593
lines changed

3 files changed

+620
-593
lines changed

src/shims/intrinsics/atomic.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
2121
) -> InterpResult<'tcx> {
2222
let this = self.eval_context_mut();
2323
match intrinsic_name {
24-
// Atomic operations
2524
"load_seqcst" => this.atomic_load(args, dest, AtomicReadOrd::SeqCst)?,
2625
"load_relaxed" => this.atomic_load(args, dest, AtomicReadOrd::Relaxed)?,
2726
"load_acquire" => this.atomic_load(args, dest, AtomicReadOrd::Acquire)?,

0 commit comments

Comments
 (0)