From 43668d9109b1f36329646fd07324d435be6f0050 Mon Sep 17 00:00:00 2001 From: lrg Date: Fri, 20 Oct 2006 12:24:38 +0000 Subject: cleaning... git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@120 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/littlesemantics/little.y | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/littlesemantics') diff --git a/test/littlesemantics/little.y b/test/littlesemantics/little.y index 1bf4e8ed..0c4bd610 100644 --- a/test/littlesemantics/little.y +++ b/test/littlesemantics/little.y @@ -41,8 +41,7 @@ identifier : ID { $$=variable(lextext); } variable_value : identifier num { $$=variable_value($1,$2);} ; environment : variable_value { $$ = variable_list($1, NULL); } -| environment T_SCOLUMN variable_value { $$ = variable_list($3, $1); - printf ("foo\n"); } +| environment T_SCOLUMN variable_value { $$ = variable_list($3, $1); } ; inst: identifier T_ASSIGN exp {$$ = assignment($1,$3); } | inst T_SCOLUMN inst {$$ = sequence($1,$3); } -- cgit