Changes in src/InitTweak/GenInit.cc [4eb31f2b:7b6ca2e]
- File:
-
- 1 edited
-
src/InitTweak/GenInit.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/GenInit.cc
r4eb31f2b r7b6ca2e 44 44 } 45 45 46 class ReturnFixer : public WithStmtsToAdd, public WithScopes{46 class ReturnFixer { 47 47 public: 48 48 /// consistently allocates a temporary variable for the return value … … 53 53 void premutate( FunctionDecl *functionDecl ); 54 54 void premutate( ReturnStmt * returnStmt ); 55 56 at_cleanup_t at_cleanup; 57 std::list< Statement * > stmtsToAddBefore; 55 58 56 59 protected: … … 157 160 158 161 void ReturnFixer::premutate( FunctionDecl *functionDecl ) { 159 GuardValue( ftype );160 GuardValue( funcName );162 GuardValue( this, ftype ); 163 GuardValue( this, funcName ); 161 164 162 165 ftype = functionDecl->get_functionType();
Note:
See TracChangeset
for help on using the changeset viewer.