Changeset b2e8841
- Timestamp:
- Mar 7, 2018, 5:02:30 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- f4abc58
- Parents:
- 661214c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/general/evaluation/cfa-stack.c
r661214c rb2e8841 16 16 stack_node(T) ** crnt = &s.head; 17 17 for ( stack_node(T) * next = t.head; next; next = next->next ) { 18 // *crnt = new( next->value, 0 );18 // *crnt = new( next->value, (stack_node(T)*)0 ); 19 19 stack_node(T)* new_node = ((stack_node(T)*)malloc()); 20 20 (*new_node){ next->value }; /***/
Note: See TracChangeset
for help on using the changeset viewer.