]> granicus.if.org Git - yasm/commitdiff
Fix a couple of Doxygen nits.
authorPeter Johnson <peter@tortall.net>
Sat, 8 Sep 2007 01:34:51 +0000 (01:34 -0000)
committerPeter Johnson <peter@tortall.net>
Sat, 8 Sep 2007 01:34:51 +0000 (01:34 -0000)
svn path=/trunk/yasm/; revision=1931

libyasm/bytecode.h
libyasm/expr.h

index e53dc5426f5c1610866b39cdb00ecad6c8a6b6fc..741aabb69f2e796ab543cde7c5dee4aaba3148d3 100644 (file)
@@ -263,7 +263,11 @@ int yasm_bc_tobytes_common
      yasm_output_value_func output_value,
      /*@null@*/ yasm_output_reloc_func output_reloc);
 
-#define yasm_bc__next(x)                STAILQ_NEXT(x, link)
+/** Get the next bytecode in a linked list of bytecodes.
+ * \param bc    bytecode
+ * \return Next bytecode.
+ */
+#define yasm_bc__next(bc)               STAILQ_NEXT(bc, link)
 
 /** Set multiple field of a bytecode.
  * A bytecode can be repeated a number of times when output.  This function
index 61975674b1ae7b52739a84741c6afd529c4dc15f..990452f252221ee7aacef5325fdf297d8ae61737 100644 (file)
@@ -56,13 +56,13 @@ typedef struct yasm_expr__item {
 
     /** Expression item data.  Correct value depends on type. */
     union {
-        yasm_bytecode *precbc;  /**< Direct bytecode ref (#YASM_EXPR_PRECBC) */
-        yasm_symrec *sym;       /**< Symbol (#YASM_EXPR_SYM) */
-        yasm_expr *expn;        /**< Subexpression (#YASM_EXPR_EXPR) */
-        yasm_intnum *intn;      /**< Integer value (#YASM_EXPR_INT) */
-        yasm_floatnum *flt;     /**< Floating point value (#YASM_EXPR_FLOAT) */
-        uintptr_t reg;          /**< Register (#YASM_EXPR_REG) */
-        unsigned int subst;     /**< Subst placeholder (#YASM_EXPR_SUBST) */
+        yasm_bytecode *precbc;  /**< Direct bytecode ref (YASM_EXPR_PRECBC) */
+        yasm_symrec *sym;       /**< Symbol (YASM_EXPR_SYM) */
+        yasm_expr *expn;        /**< Subexpression (YASM_EXPR_EXPR) */
+        yasm_intnum *intn;      /**< Integer value (YASM_EXPR_INT) */
+        yasm_floatnum *flt;     /**< Floating point value (YASM_EXPR_FLOAT) */
+        uintptr_t reg;          /**< Register (YASM_EXPR_REG) */
+        unsigned int subst;     /**< Subst placeholder (YASM_EXPR_SUBST) */
     } data;
 } yasm_expr__item;