X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/38609c34559fb86f2fb827dfed929ba9c396dc6f..6c05543cb03b40b9728f7073c4073ce993d796c6:/src/assoc.c diff --git a/src/assoc.c b/src/assoc.c index 259877e8..5e8b293f 100644 --- a/src/assoc.c +++ b/src/assoc.c @@ -1,5 +1,7 @@ /* Associativity information. - Copyright (C) 2002, 2005, 2006, 2009 Free Software Foundation, Inc. + + Copyright (C) 2002, 2005-2006, 2008-2012 Free Software Foundation, + Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -41,5 +43,8 @@ assoc_to_string (assoc a) case non_assoc: return "%nonassoc"; + + case precedence_assoc: + return "%precedence"; } }