@@ -253,20 +253,20 @@ class TargetLoweringBase {
253253 // / support for these atomic instructions, and also have different options
254254 // / w.r.t. what they should expand to.
255255 enum class AtomicExpansionKind {
256- None, // Don't expand the instruction.
257- CastToInteger, // Cast the atomic instruction to another type, e.g. from
258- // floating-point to integer type.
256+ None, // Don't expand the instruction.
257+ CastToInteger, // Cast the atomic instruction to another type, e.g. from
258+ // floating-point to integer type.
259259 LLSC, // Expand the instruction into loadlinked/storeconditional; used
260260 // by ARM/AArch64/PowerPC.
261261 LLOnly, // Expand the (load) instruction into just a load-linked, which has
262262 // greater atomic guarantees than a normal load.
263263 CmpXChg, // Expand the instruction into cmpxchg; used by at least X86.
264- MaskedIntrinsic, // Use a target-specific intrinsic for the LL/SC loop.
265- BitTestIntrinsic, // Use a target-specific intrinsic for special bit
266- // operations; used by X86.
267- CmpArithIntrinsic,// Use a target-specific intrinsic for special compare
268- // operations; used by X86.
269- Expand, // Generic expansion in terms of other atomic operations.
264+ MaskedIntrinsic, // Use a target-specific intrinsic for the LL/SC loop.
265+ BitTestIntrinsic, // Use a target-specific intrinsic for special bit
266+ // operations; used by X86.
267+ CmpArithIntrinsic, // Use a target-specific intrinsic for special compare
268+ // operations; used by X86.
269+ Expand, // Generic expansion in terms of other atomic operations.
270270
271271 // Rewrite to a non-atomic form for use in a known non-preemptible
272272 // environment.
0 commit comments