atomic: Fix typo

This commit is contained in:
ReinUsesLisp 2020-01-19 16:39:42 -03:00
parent 15bacd3b1b
commit a712959f1e

View file

@ -41,7 +41,7 @@ Id Module::OpAtomicCompareExchange(Id result_type, Id pointer, Id memory, Id equ
auto op{std::make_unique<Op>(spv::Op::OpAtomicCompareExchange, bound++, result_type)};
op->Add(pointer);
op->Add(memory);
op->Add(equal));
op->Add(equal);
op->Add(unequal);
op->Add(value);
op->Add(comparator);