diff options
Diffstat (limited to 'clang/CodeGen/CGExpr.cpp')
| -rw-r--r-- | clang/CodeGen/CGExpr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/CodeGen/CGExpr.cpp b/clang/CodeGen/CGExpr.cpp index 2f9d0ea0725..9f535b53527 100644 --- a/clang/CodeGen/CGExpr.cpp +++ b/clang/CodeGen/CGExpr.cpp @@ -1373,6 +1373,8 @@ RValue CodeGenFunction::EmitConditionalOperator(const ConditionalOperator *E) { llvm::Value *Cond = EvaluateExprAsBool(E->getCond()); Builder.CreateCondBr(Cond, LHSBlock, RHSBlock); + // FIXME: Implement this for aggregate values. + // FIXME: LHS & RHS need the "usual arithmetic conversions" but // that's not possible with the current design. |

