commit | bc1c192290e907cdec67bb7bf420bdc04bfcc4ed | [log] [tgz] |
---|---|---|
author | Ben Hutchings <ben@decadent.org.uk> | Sat Dec 17 05:01:07 2011 +0000 |
committer | Ben Hutchings <ben@decadent.org.uk> | Sat Dec 17 05:01:07 2011 +0000 |
tree | 66b69fedbdecb502bd55990219999c5ac00dc95e | |
parent | 89d76b783ee95aba075723d45667a83c303514a9 [diff] |
pack_cis: Add return statement to new_tuple() It looks like the right variable used to end up in the return register (and still does at -O0), but let's not depend on that!
diff --git a/yacc_cis.y b/yacc_cis.y index 4d97913..9896445 100644 --- a/yacc_cis.y +++ b/yacc_cis.y
@@ -393,6 +393,7 @@ t->type = type; t->parse = parse; t->next = NULL; + return t; } void yyerror(const char *msg, ...)