diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-15 02:10:40 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-15 02:10:40 +0000 |
commit | c8645e38bfe5ab46e424b7aaca53c064105c4265 (patch) | |
tree | 942995b142ce538fcd236f64a33a76d87cbc8042 | |
parent | d79e4628da88b58e9913008ff32f2e1ca785a4e7 (diff) |
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
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 17 | ||||
-rw-r--r-- | test/CodeGenCXX/throw-expressions.cpp | 5 |
2 files changed, 17 insertions, 5 deletions
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; +} |