From: Eli Friedman Date: Sat, 15 Oct 2011 02:10:40 +0000 (+0000) Subject: Handle an edge case involving the conditional operator and throw expressions. PR10582. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8645e38bfe5ab46e424b7aaca53c064105c4265;p=clang Handle an edge case involving the conditional operator and throw expressions. PR10582. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142047 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 3a9fbeed9d..b088103aa3 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -2503,11 +2503,18 @@ VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) { Expr *live = lhsExpr, *dead = rhsExpr; if (!CondExprBool) std::swap(live, dead); - // If the dead side doesn't have labels we need, and if the Live side isn't - // the gnu missing ?: extension (which we could handle, but don't bother - // to), just emit the Live part. - if (!CGF.ContainsLabel(dead)) - return Visit(live); + // If the dead side doesn't have labels we need, just emit the Live part. + if (!CGF.ContainsLabel(dead)) { + Value *Result = Visit(live); + + // If the live part is a throw expression, it acts like it has a void + // type, so evaluating it returns a null Value*. However, a conditional + // with non-void type must return a non-null Value*. + if (!Result && !E->getType()->isVoidType()) + Result = llvm::UndefValue::get(CGF.ConvertType(E->getType())); + + return Result; + } } // OpenCL: If the condition is a vector, we can treat this condition like diff --git a/test/CodeGenCXX/throw-expressions.cpp b/test/CodeGenCXX/throw-expressions.cpp index 0fd32c4457..2515acb48e 100644 --- a/test/CodeGenCXX/throw-expressions.cpp +++ b/test/CodeGenCXX/throw-expressions.cpp @@ -13,3 +13,8 @@ int test2() { void test3() { throw false; } + +// PR10582 +int test4() { + return 1 ? throw val : val; +}