Merge pull request #3595 from ReinUsesLisp/c4715-silence
shader/memory: Silence no return value warning
This commit is contained in:
commit
0d4ca5a8fc
|
@ -44,6 +44,9 @@ Node GetAtomOperation(AtomicOp op, bool is_signed, Node memory, Node data) {
|
||||||
return OperationCode::AtomicIXor;
|
return OperationCode::AtomicIXor;
|
||||||
case AtomicOp::Exch:
|
case AtomicOp::Exch:
|
||||||
return OperationCode::AtomicIExchange;
|
return OperationCode::AtomicIExchange;
|
||||||
|
default:
|
||||||
|
UNIMPLEMENTED_MSG("op={}", static_cast<int>(op));
|
||||||
|
return OperationCode::AtomicIAdd;
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
return SignedOperation(operation_code, is_signed, std::move(memory), std::move(data));
|
return SignedOperation(operation_code, is_signed, std::move(memory), std::move(data));
|
||||||
|
|
Reference in New Issue