X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/f16b08196c780556cbf50691e2944960aebc46f6..6130b75585cad5f4bb2ee78875a0bfe109b2a3e3:/src/assoc.c?ds=sidebyside diff --git a/src/assoc.c b/src/assoc.c index 2ce16f0b..3ab3579f 100644 --- a/src/assoc.c +++ b/src/assoc.c @@ -1,5 +1,5 @@ /* Associativity information. - Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc. + Copyright (C) 2002, 2005, 2006, 2008 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -41,5 +41,8 @@ assoc_to_string (assoc a) case non_assoc: return "%nonassoc"; + + case precedence_assoc: + return "%precedence"; } }