Changes in src/InitTweak/InitTweak.h [2d11663:d76c588]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/InitTweak.h
r2d11663 rd76c588 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // InitTweak.h --7 // RemoveInit.h -- 8 8 // 9 9 // Author : Rob Schluntz 10 10 // Created On : Fri May 13 11:26:36 2016 11 // Last Modified By : Aaron B. Moss12 // Last Modified On : Mon Jun 10 13:30:00 201913 // Update Count : 511 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jul 22 09:30:33 2017 13 // Update Count : 4 14 14 // 15 15 … … 19 19 #include <memory> // for shared_ptr 20 20 #include <string> // for string, allocator 21 #include <vector>22 21 23 22 #include "AST/Fwd.hpp" // for AST nodes … … 64 63 /// Non-Null if expr is a call expression whose target function is intrinsic 65 64 ApplicationExpr * isIntrinsicCallExpr( Expression * expr ); 66 const ast::ApplicationExpr * isIntrinsicCallExpr( const ast::Expr * expr);67 65 68 66 /// True if stmt is a call statement where the function called is intrinsic and takes one parameter. … … 70 68 /// Currently has assertions that make it less than fully general. 71 69 bool isIntrinsicSingleArgCallStmt( Statement * stmt ); 72 bool isIntrinsicSingleArgCallStmt( const ast::Stmt * stmt );73 70 74 71 /// True if stmt is a call statement where the function called is intrinsic. … … 77 74 /// get all Ctor/Dtor call expressions from a Statement 78 75 void collectCtorDtorCalls( Statement * stmt, std::list< Expression * > & matches ); 79 std::vector< ast::ptr< ast::Expr > > collectCtorDtorCalls( const ast::Stmt * stmt );80 76 81 77 /// get the Ctor/Dtor call expression from a Statement that looks like a generated ctor/dtor call
Note:
See TracChangeset
for help on using the changeset viewer.