Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1216)

Unified Diff: third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c

Issue 6170009: Update our yasm copy to yasm 1.1.0 (Part 1: yasm side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c
===================================================================
--- third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c (revision 71129)
+++ third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c (working copy)
@@ -28,7 +28,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <util.h>
-/*@unused@*/ RCSID("$Id: cv-symline.c 2130 2008-10-07 05:38:11Z peter $");
+/*@unused@*/ RCSID("$Id: cv-symline.c 2258 2010-01-03 01:04:18Z peter $");
#include <libyasm.h>
@@ -134,7 +134,7 @@
yasm_section *sect; /* section line numbers are for */
yasm_symrec *sectsym; /* symbol for beginning of sect */
unsigned long num_linenums;
- STAILQ_HEAD(, cv8_lineset) linesets;
+ STAILQ_HEAD(cv8_lineset_head, cv8_lineset) linesets;
} cv8_lineinfo;
/* Symbols use a bit of meta-programming to encode formats: each character
@@ -419,7 +419,7 @@
yasm_linemap *linemap;
yasm_errwarns *errwarns;
unsigned int num_lineinfos;
- STAILQ_HEAD(, cv8_lineinfo) cv8_lineinfos;
+ STAILQ_HEAD(cv8_lineinfo_head, cv8_lineinfo) cv8_lineinfos;
/*@null@*/ cv8_lineinfo *cv8_cur_li;
/*@null@*/ cv8_lineset *cv8_cur_ls;
} cv_line_info;

Powered by Google App Engine
This is Rietveld 408576698