1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Unbreak build after r338758: specify lambda return type explicitly

llvm-svn: 338760
This commit is contained in:
Krzysztof Parzyszek 2018-08-02 19:38:18 +00:00
parent 17be6b162b
commit 825db0d74d

View File

@ -2781,7 +2781,7 @@ llvm::APIntOps::SolveQuadraticEquationWrap(APInt A, APInt B, APInt C,
APInt SqrB = B * B;
bool PickLow;
auto RoundUp = [] (const APInt &V, const APInt &A) {
auto RoundUp = [] (const APInt &V, const APInt &A) -> APInt {
assert(A.isStrictlyPositive());
APInt T = V.abs().urem(A);
if (T.isNullValue())