aboutsummaryrefslogtreecommitdiff
path: root/x86_64-gen.c
diff options
context:
space:
mode:
authorgrischka <grischka>2017-02-13 18:23:43 +0100
committergrischka <grischka>2017-02-13 18:23:43 +0100
commita4a20360e9df90bb8a0ed23d113ed5564882de8a (patch)
tree3115b2a0ce13f54bb56c0b19818623dfdca3bfc4 /x86_64-gen.c
parent9817204d8afa37e03035158502ec7b73c72cae50 (diff)
downloadtinycc-a4a20360e9df90bb8a0ed23d113ed5564882de8a.tar.gz
tinycc-a4a20360e9df90bb8a0ed23d113ed5564882de8a.tar.bz2
fixes & cleanups
- tccgen.c/tcc.h: allow function declaration after use: int f() { return g(); } int g() { return 1; } may be a warning but not an error see also 76cb1144ef91924c53c57ea71e6f67ce73ce1cc6 - tccgen.c: redundant code related to inline functions removed (functions used anywhere have sym->c set automatically) - tccgen.c: make 32bit llop non-equal test portable (probably not on C67) - dynarray_add: change prototype to possibly avoid aliasing problems or at least warnings - lib/alloca*.S: ".section .note.GNU-stack,"",%progbits" removed (has no effect) - tccpe: set SizeOfCode field (for correct upx decompression) - libtcc.c: fixed alternative -run invocation tcc "-run -lxxx ..." file.c (meant to load the library after file). Also supported now: tcc files ... options ... -run @ arguments ...
Diffstat (limited to 'x86_64-gen.c')
-rw-r--r--x86_64-gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x86_64-gen.c b/x86_64-gen.c
index 7b61b48..9f19e78 100644
--- a/x86_64-gen.c
+++ b/x86_64-gen.c
@@ -224,7 +224,7 @@ static int is64_type(int t)
}
/* instruction + 4 bytes data. Return the address of the data */
-ST_FUNC int oad(int c, int s)
+static int oad(int c, int s)
{
int t;
if (nocode_wanted)