File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/include/llvm/CodeGen Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments