X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/68f91d58f15abe21c65a8b4d7022ccb854c857dc..0d40b36417759153678ed0ad125bc912884f602d:/src/assoc.c diff --git a/src/assoc.c b/src/assoc.c index 43227f02..c24c7036 100644 --- a/src/assoc.c +++ b/src/assoc.c @@ -1,6 +1,6 @@ /* Associativity information. - Copyright (C) 2002, 2005-2006, 2009-2013 Free Software Foundation, + Copyright (C) 2002, 2005-2006, 2008-2015 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -43,5 +43,8 @@ assoc_to_string (assoc a) case non_assoc: return "%nonassoc"; + + case precedence_assoc: + return "%precedence"; } }