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

Unified Diff: gas/frags.h

Issue 773933002: GAS: Handle multiple fixups in bundle for call adjustment (Closed) Base URL: https://chromium.googlesource.com/native_client/nacl-binutils.git@nacl-hacks
Patch Set: Created 6 years 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 | « no previous file | gas/write.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gas/frags.h
diff --git a/gas/frags.h b/gas/frags.h
index 58d4c445f8ff890126fd9a70ded82b486e332afa..8afb01b50a1d459b2ae084b1874698ce4a6170be 100644
--- a/gas/frags.h
+++ b/gas/frags.h
@@ -93,10 +93,14 @@ struct frag {
relax_substateT fr_subtype;
/* NativeClient support:
- * If this fragment contains a call, we will need to tweak the fixup to
+ * If this fragment contains a call, we will need to tweak any fixups to
* reflect the padding to put the call at the end of the fragment.
*/
- fixS *nacl_fixup;
+ struct frag_nacl_fixup_list
+ {
+ struct frag_nacl_fixup_list *next;
+ fixS *fixup;
+ } *nacl_fixups;
#ifdef USING_CGEN
/* Don't include this unless using CGEN to keep frag size down. */
« no previous file with comments | « no previous file | gas/write.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698