aboutsummaryrefslogtreecommitdiff
path: root/include/stdarg.h
Commit message (Collapse)AuthorAgeFilesLines
* win64: fix va_arggrischka2016-07-101-1/+2
| | | | | | | | | | | fixes 5c35ba66c5ade4713bbd9c005e66889f6d7db293 Implementation was consistent within tcc but incompatible with the ABI (for example library functions vprintf etc) Also: - tccpp.c/get_tok_str() : avoid "unknown format "%llu" warning - x86_64_gen.c/gen_vla_alloc() : fix vstack leak
* Add arm64 (AArch64) as a target architecture.Edmund Grimley Evans2015-02-231-0/+13
|
* x86_64: pass va_list as pointerDaniel Glöckner2014-03-301-4/+4
| | | | | | The ABI requires that va_list is passed as a pointer although its contents is a kept in a structure. Therefore make it a single element array.
* New implementation of va_list/va_start/var_copy that do not use dynamic ↵mingodad2014-03-281-9/+19
| | | | memory, with this when compiling fossil-scm with tcc on linux X86_64 it works fine.
* Add va_* macro implementation for ARMThomas Preud'homme2013-11-251-0/+11
|
* Fixed x86-64 long double passing.James Lyon2013-04-261-2/+2
| | | | | | long double arguments require 16-byte alignment on the stack, which requires adjustment when the the stack offset is not an evven number of 8-byte words.
* 64-bit tests now pass (well, nearly).James Lyon2013-04-241-3/+3
| | | | | tcctest1-3 fail, but this appears to be due to bugs in GCC rather than TCC (from manual inspection of the output).
* Remove semicolon in x86-64 va_arg definition.Thomas Preud'homme2011-08-051-1/+1
|
* Support struct arguments with stdarg.hShinichiro Hamaji2010-12-281-42/+10
| | | | | | | | - add __builtin_va_arg_types to check how arguments were passed - move most code of stdarg into libtcc1.c - remove __builtin_malloc and __builtin_free - add a test case based on the bug report (http://www.mail-archive.com/tinycc-devel@nongnu.org/msg03036.html)
* win64: use new headers from mingwgrischka2009-07-181-3/+9
|
* drop alloca #definegrischka2009-05-161-16/+0
| | | | | | | (Because GNU's alloca.h unconditionally #undef's alloca) Also, remove gcc specific sections in headers. and instead change tests such that gcc does not use them.
* new subdirs: include, lib, testsgrischka2009-04-181-0/+83