gdb
[deliverable/binutils-gdb.git] / gdb / expression.h
index 084c70effed1bcd25a19452c085695b733645d30..fe5f8fc9a48cc043ff77acc9ea1251322e40dd73 100644 (file)
@@ -193,8 +193,9 @@ enum exp_opcode
        indicates that we have found something of the form <name> ( <stuff> ) */
     OP_F77_UNDETERMINED_ARGLIST,
 
-    /* The following OP is a special one, it introduces a F77 complex
-       literal. It is followed by exactly two args that are doubles.  */
+    /* OP_COMPLEX takes a type in the following element, followed by another
+       OP_COMPLEX, making three exp_elements.  It is followed by two double
+       args, and converts them into a complex number of the given type. */
     OP_COMPLEX,
 
     /* OP_STRING represents a string constant.
@@ -373,6 +374,7 @@ union exp_element
 struct expression
   {
     const struct language_defn *language_defn; /* language it was entered in */
+    struct gdbarch *gdbarch;  /* architecture it was parsed in */
     int nelts;
     union exp_element elts[1];
   };
This page took 0.02343 seconds and 4 git commands to generate.