Changeset b2e8841 for doc/papers/general


Ignore:
Timestamp:
Mar 7, 2018, 5:02:30 PM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
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
Message:

Update stack benchmark

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/papers/general/evaluation/cfa-stack.c

    r661214c rb2e8841  
    1616        stack_node(T) ** crnt = &s.head;
    1717        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 );
    1919                stack_node(T)* new_node = ((stack_node(T)*)malloc());
    2020                (*new_node){ next->value }; /***/
Note: See TracChangeset for help on using the changeset viewer.