diff options
author | Anders Carlsson <andersca@mac.com> | 2009-09-15 16:35:24 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-09-15 16:35:24 +0000 |
commit | 6fcec8b58d0571866fcb162db947b029cc539ec4 (patch) | |
tree | ec569b4fdf5542b0360daf27fb9c93cd52abfdb7 /lib/CodeGen/CodeGenFunction.h | |
parent | bf4ea56cdc376cef5a12abf6bf18dc34805c2226 (diff) |
Code generation of Conditional operators that are lvalues (but that aren't bitfields).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index cc7b0b0455..8629b6902e 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -794,7 +794,7 @@ public: LValue EmitExtVectorElementExpr(const ExtVectorElementExpr *E); LValue EmitMemberExpr(const MemberExpr *E); LValue EmitCompoundLiteralLValue(const CompoundLiteralExpr *E); - LValue EmitConditionalOperator(const ConditionalOperator *E); + LValue EmitConditionalOperatorLValue(const ConditionalOperator *E); LValue EmitCastLValue(const CastExpr *E); llvm::Value *EmitIvarOffset(const ObjCInterfaceDecl *Interface, |