From c82e52d55bd31eea943c616ad780f27e5ab9dc7a Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 28 Jun 2016 15:11:06 +0200 Subject: tccasm: Implement .pushsection and .popsection --- tcc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tcc.h') diff --git a/tcc.h b/tcc.h index 1e2b815..4de48e7 100644 --- a/tcc.h +++ b/tcc.h @@ -448,8 +448,8 @@ typedef struct Section { int nb_hashed_syms; /* used to resize the hash table */ struct Section *link; /* link to another section */ struct Section *reloc; /* corresponding section for relocation, if any */ - struct Section *hash; /* hash table for symbols */ - struct Section *next; + struct Section *hash; /* hash table for symbols */ + struct Section *prev; /* previous section on section stack */ char name[1]; /* section name */ } Section; -- cgit v1.3.1