diff options
| author | Michael Matz <matz@suse.de> | 2016-06-29 19:22:07 +0200 |
|---|---|---|
| committer | Michael Matz <matz@suse.de> | 2016-12-15 17:47:07 +0100 |
| commit | ff5561ff7d699eb9e30e95f1e2cfd1e98e5a990d (patch) | |
| tree | 5e51fdd0b49127553a4cb24f50b379174a88f6a4 /i386-asm.c | |
| parent | 253afeed1e822965804c0f5503bac057e68f08e8 (diff) | |
| download | tinycc-ff5561ff7d699eb9e30e95f1e2cfd1e98e5a990d.tar.gz tinycc-ff5561ff7d699eb9e30e95f1e2cfd1e98e5a990d.tar.bz2 | |
x86-64-asm: Accept expressions for .quad
The x86-64 target has 64bit relocs, and hence can accept
generic expressions for '.quad'.
Diffstat (limited to 'i386-asm.c')
| -rw-r--r-- | i386-asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -433,7 +433,7 @@ ST_FUNC void gen_expr32(ExprValue *pe) } #ifdef TCC_TARGET_X86_64 -static void gen_expr64(ExprValue *pe) +ST_FUNC void gen_expr64(ExprValue *pe) { gen_addr64(pe->sym ? VT_SYM : 0, pe->sym, pe->v); } |
