]> granicus.if.org Git - clang/commitdiff
add a fixme
authorChris Lattner <sabre@nondot.org>
Sat, 14 Jul 2007 00:01:01 +0000 (00:01 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 14 Jul 2007 00:01:01 +0000 (00:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39847 91177308-0d34-0410-b5e6-96231b3b80d8

CodeGen/CGExpr.cpp

index 2f9d0ea072588ab0d7942f922d851399c5f36244..9f535b5352745f1aa5c4d6996085450474cbab7b 100644 (file)
@@ -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.