diff options
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
| -rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 3e0cd146256f7..83f1e2df9f45e 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1948,6 +1948,7 @@ public:    void EmitLabel(const LabelDecl *D); // helper for EmitLabelStmt.    void EmitLabelStmt(const LabelStmt &S); +  void EmitAttributedStmt(const AttributedStmt &S);    void EmitGotoStmt(const GotoStmt &S);    void EmitIndirectGotoStmt(const IndirectGotoStmt &S);    void EmitIfStmt(const IfStmt &S); @@ -2104,6 +2105,8 @@ public:    LValue EmitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E);    LValue EmitOpaqueValueLValue(const OpaqueValueExpr *e); +  RValue EmitRValueForField(LValue LV, const FieldDecl *FD); +    class ConstantEmission {      llvm::PointerIntPair<llvm::Constant*, 1, bool> ValueAndIsReference;      ConstantEmission(llvm::Constant *C, bool isReference) @@ -2143,15 +2146,13 @@ public:    LValue EmitLValueForAnonRecordField(llvm::Value* Base,                                        const IndirectFieldDecl* Field,                                        unsigned CVRQualifiers); -  LValue EmitLValueForField(llvm::Value* Base, const FieldDecl* Field, -                            unsigned CVRQualifiers); +  LValue EmitLValueForField(LValue Base, const FieldDecl* Field);    /// EmitLValueForFieldInitialization - Like EmitLValueForField, except that    /// if the Field is a reference, this will return the address of the reference    /// and not the address of the value stored in the reference. -  LValue EmitLValueForFieldInitialization(llvm::Value* Base, -                                          const FieldDecl* Field, -                                          unsigned CVRQualifiers); +  LValue EmitLValueForFieldInitialization(LValue Base, +                                          const FieldDecl* Field);    LValue EmitLValueForIvar(QualType ObjectTy,                             llvm::Value* Base, const ObjCIvarDecl *Ivar, | 
