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

Unified Diff: third_party/yasm/patched-yasm/libyasm/linemap.h

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
« no previous file with comments | « third_party/yasm/patched-yasm/libyasm/inttree.c ('k') | third_party/yasm/patched-yasm/libyasm/linemap.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/yasm/patched-yasm/libyasm/linemap.h
===================================================================
--- third_party/yasm/patched-yasm/libyasm/linemap.h (revision 71129)
+++ third_party/yasm/patched-yasm/libyasm/linemap.h (working copy)
@@ -3,7 +3,7 @@
* \brief YASM virtual line mapping interface.
*
* \rcs
- * $Id: linemap.h 2101 2008-05-23 06:46:51Z peter $
+ * $Id: linemap.h 2259 2010-01-03 01:58:23Z peter $
* \endrcs
*
* \license
@@ -91,17 +91,19 @@
YASM_LIB_DECL
unsigned long yasm_linemap_goto_next(yasm_linemap *linemap);
-/** Set a new file/line physical association starting point at the current
+/** Set a new file/line physical association starting point at the specified
* virtual line. line_inc indicates how much the "real" line is incremented
* by for each virtual line increment (0 is perfectly legal).
* \param linemap line mapping repository
* \param filename physical file name (if NULL, not changed)
+ * \param virtual_line virtual line number (if 0, linemap->current is used)
* \param file_line physical line number
* \param line_inc line increment
*/
YASM_LIB_DECL
void yasm_linemap_set(yasm_linemap *linemap, /*@null@*/ const char *filename,
- unsigned long file_line, unsigned long line_inc);
+ unsigned long virtual_line, unsigned long file_line,
+ unsigned long line_inc);
/** Poke a single file/line association, restoring the original physical
* association starting point. Caution: increments the current virtual line
« no previous file with comments | « third_party/yasm/patched-yasm/libyasm/inttree.c ('k') | third_party/yasm/patched-yasm/libyasm/linemap.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698