atomic: Fix typo
This commit is contained in:
parent
15bacd3b1b
commit
a712959f1e
1 changed files with 1 additions and 1 deletions
|
@ -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)};
|
auto op{std::make_unique<Op>(spv::Op::OpAtomicCompareExchange, bound++, result_type)};
|
||||||
op->Add(pointer);
|
op->Add(pointer);
|
||||||
op->Add(memory);
|
op->Add(memory);
|
||||||
op->Add(equal));
|
op->Add(equal);
|
||||||
op->Add(unequal);
|
op->Add(unequal);
|
||||||
op->Add(value);
|
op->Add(value);
|
||||||
op->Add(comparator);
|
op->Add(comparator);
|
||||||
|
|
Loading…
Reference in a new issue