diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-07-14 00:01:01 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-07-14 00:01:01 +0000 |
| commit | 027f21dd72af5a76a6112501ada3eb4435e65f92 (patch) | |
| tree | 5c30c4a23bdd10990006157312d4a9dd1a2e2db1 /clang | |
| parent | 666115c84830c6fd0576bc7e7a1c438e7185df88 (diff) | |
| download | bcm5719-llvm-027f21dd72af5a76a6112501ada3eb4435e65f92.tar.gz bcm5719-llvm-027f21dd72af5a76a6112501ada3eb4435e65f92.zip | |
add a fixme
llvm-svn: 39847
Diffstat (limited to 'clang')
| -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. |

