diff options
author | Anas Nashif <anas.nashif@intel.com> | 2013-04-14 01:07:52 -0700 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2013-04-14 01:07:52 -0700 |
commit | 02a48f17aa3a8080563593ab849bd2458a0c3113 (patch) | |
tree | e683d520d73e96fcb7a6827026d23537c0817788 /output/outelf.c | |
parent | 300d4816804c8ceb4a4601a49ec3ec479c1951b5 (diff) | |
download | nasm-02a48f17aa3a8080563593ab849bd2458a0c3113.tar.gz nasm-02a48f17aa3a8080563593ab849bd2458a0c3113.tar.bz2 nasm-02a48f17aa3a8080563593ab849bd2458a0c3113.zip |
Imported Upstream version 2.10.07upstream/2.10.07upstream-2.10.07
Diffstat (limited to 'output/outelf.c')
-rw-r--r-- | output/outelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outelf.c b/output/outelf.c index 6d43b86..9ec0035 100644 --- a/output/outelf.c +++ b/output/outelf.c @@ -48,7 +48,7 @@ #include "output/elf.h" #include "output/outelf.h" -#if defined(OF_ELF32) || defined(OF_ELF64) +#if defined(OF_ELF32) || defined(OF_ELF64) || defined(OF_ELFX32) const struct elf_known_section elf_known_sections[] = { { ".text", SHT_PROGBITS, SHF_ALLOC|SHF_EXECINSTR, 16 }, @@ -120,4 +120,4 @@ void section_attrib(char *name, char *attr, int pass, } } -#endif /* defined(OF_ELF32) || defined(OF_ELF64) */ +#endif /* defined(OF_ELF32) || defined(OF_ELF64) || defined(OF_ELFX32) */ |