* inftarg.c (child_thread_alive): New function to see if a
[deliverable/binutils-gdb.git] / gdb / parser-defs.h
index fd03a6e0649a8b6efa9cc96175c7871b053d4a0d..3845c1a261b7fadd1e32d62175f48d45370d6bf6 100644 (file)
@@ -169,7 +169,7 @@ enum precedence
 { PREC_NULL, PREC_COMMA, PREC_ABOVE_COMMA, PREC_ASSIGN, PREC_LOGICAL_OR,
   PREC_LOGICAL_AND, PREC_BITWISE_IOR, PREC_BITWISE_AND, PREC_BITWISE_XOR,
   PREC_EQUAL, PREC_ORDER, PREC_SHIFT, PREC_ADD, PREC_MUL, PREC_REPEAT,
-  PREC_HYPER, PREC_PREFIX, PREC_SUFFIX };
+  PREC_HYPER, PREC_PREFIX, PREC_SUFFIX, PREC_BUILTIN_FUNCTION };
 
 /* Table mapping opcodes into strings for printing operators
    and precedences of the operators.  */
@@ -180,6 +180,9 @@ struct op_print
   enum exp_opcode opcode;
   /* Precedence of operator.  These values are used only by comparisons.  */
   enum precedence precedence;
+
+  /* For a binary operator:  1 iff right associate.
+     For a unary operator:  1 iff postfix. */
   int right_assoc;
 };
 
This page took 0.023105 seconds and 4 git commands to generate.