X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/ea0a767697594d2eda37daf5ecbf2fdaf60d2189..f6df83b4e80b2a53c08b5dc654e247076a3b9b03:/src/assoc.c diff --git a/src/assoc.c b/src/assoc.c index 3ceb3483..5e8b293f 100644 --- a/src/assoc.c +++ b/src/assoc.c @@ -1,6 +1,6 @@ /* Associativity information. - Copyright (C) 2002, 2005-2006, 2009-2011 Free Software Foundation, + Copyright (C) 2002, 2005-2006, 2008-2012 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"; } }