Changeset df6cc9d for src/GenPoly/SpecializeNew.cpp
- Timestamp:
- Oct 19, 2022, 4:43:26 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 1a45263
- Parents:
- 9cd5bd2 (diff), 135143ba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/SpecializeNew.cpp
r9cd5bd2 rdf6cc9d 16 16 #include "Specialize.h" 17 17 18 #include "AST/Pass.hpp" 18 #include "AST/Inspect.hpp" // for isIntrinsicCallExpr 19 #include "AST/Pass.hpp" // for Pass 19 20 #include "AST/TypeEnvironment.hpp" // for OpenVarSet, AssertionSet 20 21 #include "Common/UniqueName.h" // for UniqueName 21 22 #include "GenPoly/GenPoly.h" // for getFunctionType 22 #include "InitTweak/InitTweak.h" // for isIntrinsicCallExpr23 23 #include "ResolvExpr/FindOpenVars.h" // for findOpenVars 24 24 #include "ResolvExpr/TypeEnvironment.h" // for FirstOpen, FirstClosed 25 26 #include "AST/Print.hpp"27 25 28 26 namespace GenPoly { … … 425 423 const ast::Expr * SpecializeCore::postvisit( 426 424 const ast::ApplicationExpr * expr ) { 427 if ( InitTweak::isIntrinsicCallExpr( expr ) ) {425 if ( ast::isIntrinsicCallExpr( expr ) ) { 428 426 return expr; 429 427 }
Note:
See TracChangeset
for help on using the changeset viewer.