Changeset 413f7f8 for src/ResolvExpr/AlternativeFinder.cc
- Timestamp:
- Jul 7, 2015, 1:49:58 PM (10 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, string, with_gc
- Children:
- 82dd287
- Parents:
- e0ff3e6 (diff), 8686f31 (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/ResolvExpr/AlternativeFinder.cc
re0ff3e6 r413f7f8 10 10 // Created On : Sat May 16 23:52:08 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jun 22 17:19:54201513 // Update Count : 1712 // Last Modified On : Fri Jul 3 17:58:39 2015 13 // Update Count : 22 14 14 // 15 15 … … 543 543 544 544 AlternativeFinder funcFinder( indexer, env ); { 545 NameExpr *fname ;545 NameExpr *fname = 0;; 546 546 if ( ( fname = dynamic_cast<NameExpr *>( untypedExpr->get_function())) 547 547 && ( fname->get_name() == std::string("&&")) ) { 548 alternatives.push_back( Alternative( untypedExpr->clone(), env, Cost()) ); 548 VoidType v = Type::Qualifiers(); // resolve to type void * 549 PointerType pt( Type::Qualifiers(), v.clone() ); 550 UntypedExpr *vexpr = untypedExpr->clone(); 551 vexpr->get_results().push_front( pt.clone() ); 552 alternatives.push_back( Alternative( vexpr, env, Cost()) ); 549 553 return; 550 554 }
Note:
See TracChangeset
for help on using the changeset viewer.