diff options
| author | bors <bors@rust-lang.org> | 2024-08-06 08:12:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-06 08:12:07 +0000 |
| commit | 5b2cdc1f65285f39ba871fb7d47b60f07f51002c (patch) | |
| tree | 8cd5865bacfa8c796f818acf8bde7ce95a724f38 /compiler/rustc_codegen_ssa/src/common.rs | |
| parent | f6edc8a07c831a423e367049f39a96eb10137320 (diff) | |
| parent | ac3e3491101a021e79ce79399b4d6803fc79bf8f (diff) | |
| download | rust-5b2cdc1f65285f39ba871fb7d47b60f07f51002c.tar.gz rust-5b2cdc1f65285f39ba871fb7d47b60f07f51002c.zip | |
Auto merge of #3791 - rust-lang:rustup-2024-08-06, r=RalfJung
Automatic Rustup
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/common.rs')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/common.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/rustc_codegen_ssa/src/common.rs b/compiler/rustc_codegen_ssa/src/common.rs index 741c0f090e9..a972c0cd99d 100644 --- a/compiler/rustc_codegen_ssa/src/common.rs +++ b/compiler/rustc_codegen_ssa/src/common.rs @@ -8,7 +8,7 @@ use rustc_span::Span; use crate::traits::*; -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Debug)] pub enum IntPredicate { IntEQ, IntNE, @@ -22,7 +22,7 @@ pub enum IntPredicate { IntSLE, } -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Debug)] pub enum RealPredicate { RealPredicateFalse, RealOEQ, @@ -42,7 +42,7 @@ pub enum RealPredicate { RealPredicateTrue, } -#[derive(Copy, Clone, PartialEq)] +#[derive(Copy, Clone, PartialEq, Debug)] pub enum AtomicRmwBinOp { AtomicXchg, AtomicAdd, @@ -57,7 +57,7 @@ pub enum AtomicRmwBinOp { AtomicUMin, } -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Debug)] pub enum AtomicOrdering { Unordered, Relaxed, @@ -67,7 +67,7 @@ pub enum AtomicOrdering { SequentiallyConsistent, } -#[derive(Copy, Clone)] +#[derive(Copy, Clone, Debug)] pub enum SynchronizationScope { SingleThread, CrossThread, |
