Changeset a9a259c for src/ResolvExpr
- Timestamp:
- Feb 25, 2016, 4:34:09 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- c14cff1
- Parents:
- ae42f2a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/ResolvExpr/Resolver.cc ¶
rae42f2a ra9a259c 487 487 if ( ApplicationExpr * appExpr = dynamic_cast< ApplicationExpr * >( choice.expr ) ) { 488 488 if ( VariableExpr * function = dynamic_cast< VariableExpr * > ( appExpr->get_function() ) ) { 489 if ( function->get_var()->get_linkage() == LinkageSpec::Intrinsic) {490 // if the constructor that was found is intrinsic , reset to C-style489 if ( LinkageSpec::isOverridable( function->get_var()->get_linkage() ) ) { 490 // if the constructor that was found is intrinsic or autogenerated, reset to C-style 491 491 // initializer so that code generation is easy to handle 492 492 fallbackInit( ctorInit );
Note: See TracChangeset
for help on using the changeset viewer.