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

Unified Diff: third_party/yasm/patched-yasm/modules/objfmts/elf/elf-machine.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
Index: third_party/yasm/patched-yasm/modules/objfmts/elf/elf-machine.h
===================================================================
--- third_party/yasm/patched-yasm/modules/objfmts/elf/elf-machine.h (revision 71129)
+++ third_party/yasm/patched-yasm/modules/objfmts/elf/elf-machine.h (working copy)
@@ -44,8 +44,7 @@
#define YASM_WRITE_64Z_L(p, i) YASM_WRITE_64C_L(p, 0, i)
-typedef int(*func_accepts_reloc)(size_t val, yasm_symrec *wrt,
- yasm_symrec **ssyms);
+typedef int(*func_accepts_reloc)(size_t val, yasm_symrec *wrt);
typedef void(*func_write_symtab_entry)(unsigned char *bufp,
elf_symtab_entry *entry,
yasm_intnum *value_intn,
@@ -57,9 +56,9 @@
elf_section_index sindex);
typedef void(*func_handle_reloc_addend)(yasm_intnum *intn,
- elf_reloc_entry *reloc);
-typedef unsigned int(*func_map_reloc_info_to_type)(elf_reloc_entry *reloc,
- yasm_symrec **ssyms);
+ elf_reloc_entry *reloc,
+ unsigned long offset);
+typedef unsigned int(*func_map_reloc_info_to_type)(elf_reloc_entry *reloc);
typedef void(*func_write_reloc)(unsigned char *bufp,
elf_reloc_entry *reloc,
unsigned int r_type,

Powered by Google App Engine
This is Rietveld 408576698