+++ /dev/null
-
-// Token values
-
-
-
-foo_state * __repairstate0__=new foo_state();
-__repairstate0__->head=(int)head;
-__repairstate0__->doanalysis();
-*((int*) &head)=__repairstate0__->head;
-delete __repairstate0__;
+++ /dev/null
-#include "ex_aux.h"
-struct Node {
- int data;
- struct Node *next;
- struct Node *prev;
-};
-
-int main(int argc, char **argv) {
- struct Node * head =(struct Node *) malloc(sizeof (struct Node));
- for(int i=0;i<300;i++) {
- struct Node * tmp =(struct Node *) malloc(sizeof (struct Node));
- tmp->next=head;
- head->prev=tmp;
- head=tmp;
- }
-
- for(int j=0;j<6000;j++) {
-#include "ex.cc"
- }
-
-}