diff options
| author | grischka <grischka> | 2014-01-06 19:56:26 +0100 |
|---|---|---|
| committer | grischka <grischka> | 2014-01-06 19:56:26 +0100 |
| commit | 2bd0daabbe1fc40e65e4a4631e68f5ca093ea1fb (patch) | |
| tree | e556d3d04da0db0d13a58905875537c09302c163 /tests/tests2 | |
| parent | d443644de360f68a84c05ab23f20f013b6e05b58 (diff) | |
| download | tinycc-2bd0daabbe1fc40e65e4a4631e68f5ca093ea1fb.tar.gz tinycc-2bd0daabbe1fc40e65e4a4631e68f5ca093ea1fb.tar.bz2 | |
misc. fixes
- tccgen: error out for cast to void, as in
void foo(void) { return 1; }
This avoids an assertion failure in x86_64-gen.c, also.
also fix tests2/03_struct.c accordingly
- Error: "memory full" - be more specific
- Makefiles: remove circular dependencies, lookup tcctest.c from VPATH
- tcc.h: cleanup lib, include, crt and libgcc search paths"
avoid duplication or trailing slashes with no CONFIG_MULTIARCHDIR
(as from 9382d6f1a0e2d0104a82ed805207d9e742c6b068)
- tcc.h: remove ";{B}" from PE search path
in ce5e12c2f950052d8109b6b7a56d900547705c08 James Lyon wrote:
"... I'm not sure this is the right way to fix this problem."
And the answer is: No, please. (copying libtcc1.a for tests instead)
- win32/build_tcc.bat: do not move away a versioned file
Diffstat (limited to 'tests/tests2')
| -rw-r--r-- | tests/tests2/03_struct.c | 2 | ||||
| -rw-r--r-- | tests/tests2/Makefile | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/tests/tests2/03_struct.c b/tests/tests2/03_struct.c index df0d3e7..c5d48c5 100644 --- a/tests/tests2/03_struct.c +++ b/tests/tests2/03_struct.c @@ -6,7 +6,7 @@ struct fred int natasha; }; -void main() +int main() { struct fred bloggs; diff --git a/tests/tests2/Makefile b/tests/tests2/Makefile index 369ed47..51dc38d 100644 --- a/tests/tests2/Makefile +++ b/tests/tests2/Makefile @@ -96,6 +96,3 @@ all test: $(TESTS) clean: rm -vf fred.txt *.output - -Makefile: $(top_srcdir)/tests/tests2/Makefile - cp $< $@ |
