Skip to content

Commit 7dc163c

Browse files
committed
reorder fields
1 parent 8add945 commit 7dc163c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/CodeGen/TargetLowering.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,9 +1214,6 @@ class TargetLoweringBase {
12141214
struct IntrinsicInfo {
12151215
unsigned opc = 0; // target opcode
12161216
EVT memVT; // memory VT
1217-
SyncScope::ID ssid = SyncScope::System;
1218-
AtomicOrdering order = AtomicOrdering::NotAtomic;
1219-
AtomicOrdering failureOrder = AtomicOrdering::NotAtomic;
12201217

12211218
// value representing memory location
12221219
PointerUnion<const Value *, const PseudoSourceValue *> ptrVal;
@@ -1231,6 +1228,9 @@ class TargetLoweringBase {
12311228
MaybeAlign align = Align(1); // alignment
12321229

12331230
MachineMemOperand::Flags flags = MachineMemOperand::MONone;
1231+
SyncScope::ID ssid = SyncScope::System;
1232+
AtomicOrdering order = AtomicOrdering::NotAtomic;
1233+
AtomicOrdering failureOrder = AtomicOrdering::NotAtomic;
12341234
IntrinsicInfo() = default;
12351235
};
12361236

0 commit comments

Comments
 (0)