Changes in src/Common/Eval.cc [ba48a9b:e01eb4a]
- File:
-
- 1 edited
-
src/Common/Eval.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/Eval.cc
rba48a9b re01eb4a 16 16 #include <utility> // for pair 17 17 18 #include "AST/Inspect.hpp" 18 19 #include "Common/PassVisitor.h" 19 20 #include "CodeGen/OperatorTable.h" // access: OperatorInfo … … 177 178 178 179 void postvisit( const ast::ApplicationExpr * expr ) { 179 const ast::DeclWithType * function = InitTweak::getFunction(expr);180 const ast::DeclWithType * function = ast::getFunction(expr); 180 181 if ( ! function || function->linkage != ast::Linkage::Intrinsic ) { valid = false; return; } 181 182 const std::string & fname = function->name;
Note:
See TracChangeset
for help on using the changeset viewer.