Dale Weiler
|
ccdfd4c65a
|
oops
|
2013-02-01 23:12:48 +00:00 |
|
Dale Weiler
|
394f1deade
|
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
|
2013-02-01 23:11:26 +00:00 |
|
Dale Weiler
|
a3559548a8
|
Fix ~ unary operator (can now const-fold). Also things like b &= ~1 work now. We also cache ast_value of float (-1) for -1-x (which is how ~ is implemented).
|
2013-02-01 23:10:23 +00:00 |
|
Wolfgang Bumiller
|
c34f5d20ed
|
Merge branch 'cooking' of git://github.com/graphitemaster/gmqcc into cooking
|
2013-02-01 19:12:45 +01:00 |
|
Dale Weiler
|
03b933bc7a
|
Work in progress ~ operator implemented as -1-x.
|
2013-02-01 12:56:01 +00:00 |
|
Dale Weiler
|
bf6eb9432e
|
Fix memleak and assignment for cached lengths in corrector
|
2013-02-01 06:22:29 +00:00 |
|
Wolfgang Bumiller
|
ea15abada5
|
manpage: removed -Wpreprocessor
|
2013-01-31 22:23:29 +01:00 |
|
Wolfgang Bumiller
|
622c55f254
|
converted qcvm.1 to mdoc
|
2013-01-31 22:15:01 +01:00 |
|
Dale Weiler
|
d7a47eb5f9
|
Ignore most memory comparisions by validating the lengths are the same first. Becomes O(log(n)) from O(n) for correct_exists.
|
2013-01-30 23:32:15 +00:00 |
|
Dale Weiler
|
a6ecc3cbc4
|
Cache lengths in corrector. This speeds up the corrector a little.
|
2013-01-30 23:22:03 +00:00 |
|
Dale Weiler
|
a1fac66587
|
Added definition file for test-suite, used by default by the test system. To override the defs globally, use -defs=file from the command line for the test-suite. To override the defs per-file, use F: -no-defs flag in the test template file.
|
2013-01-30 08:04:56 +00:00 |
|
Dale Weiler
|
9fffb3441c
|
Older clang had -Wmissing-variable-declarations, which causes a heap of warnings, we disable it, because it's a stupid warning. However, because it's unsupported in newer clang, disabling it causes a warning, so we need to -Wno-unknown-warning-option. *sigh*
|
2013-01-30 06:52:36 +00:00 |
|
Dale Weiler
|
5f9f6c11b8
|
Get it compiling with C++ compilers again.
|
2013-01-30 06:49:50 +00:00 |
|
Dale Weiler
|
1916a6e339
|
Slightly larger code, but strategic inline for corrector stuff. Makes it a little faster on my RPi (unnoticable on my desktop though).
|
2013-01-30 06:36:00 +00:00 |
|
Dale Weiler
|
b9f46f4ef7
|
Not an assembler instruction, but virtual instruction used by the IR.
|
2013-01-30 06:31:24 +00:00 |
|
Dale Weiler
|
18c317a787
|
Empty string, not "<null>"
|
2013-01-30 06:28:02 +00:00 |
|
Dale Weiler
|
8c6f4c3fc3
|
Cleanups
|
2013-01-30 06:27:06 +00:00 |
|
Dale Weiler
|
835659ac48
|
Don't ignore return result from test_perform.
|
2013-01-30 06:17:57 +00:00 |
|
Dale Weiler
|
44c87bedfc
|
It is used, gcc is a liar.
|
2013-01-30 06:14:35 +00:00 |
|
Dale Weiler
|
98fd5cd429
|
Some cleanups and what not.
|
2013-01-30 06:13:11 +00:00 |
|
Dale Weiler
|
ebd6a1ae95
|
Document the options in the opts.def file
|
2013-01-30 06:04:34 +00:00 |
|
Dale Weiler
|
9f5f2b6d74
|
Fix pragma parsing that I broke.
|
2013-01-30 05:51:28 +00:00 |
|
Dale Weiler
|
e12d492d67
|
Removing #error/#warning/#message from parser, and making it part of preprocessor as directives again.
|
2013-01-30 05:49:08 +00:00 |
|
Dale Weiler
|
36c5722273
|
Rename
|
2013-01-30 05:35:07 +00:00 |
|
Dale Weiler
|
d201cfe6b4
|
Work in progress options cleanup.
|
2013-01-30 05:24:30 +00:00 |
|
Dale Weiler
|
6c4c373089
|
Print off the documentation when -[f/W/O]help, also fixed some of the descriptions for flags.
|
2013-01-30 04:22:13 +00:00 |
|
Dale Weiler
|
480b2fc7b6
|
Added documentation to all options inside the binary itself. These will be used later for "man/nroff -man"-like documentation on OSs that lack "man" and the concept of system wide documentation. Also it will be nice to add -Wsome_warning help (to get some help about a specific warning/error, etc).
|
2013-01-30 02:56:58 +00:00 |
|
Dale Weiler
|
f3c5c40104
|
Fix splint warning
|
2013-01-30 01:38:37 +00:00 |
|
Dale Weiler
|
76614b311e
|
s/WARN_PREPROCESSOR/WARN_CPP/g (to stay somewhat compatible with gcc/clang warnings for the preprocessor)
|
2013-01-30 01:32:10 +00:00 |
|
Dale Weiler
|
d61172598e
|
Removed -Wcpp (not needed any more)
|
2013-01-30 01:26:51 +00:00 |
|
Dale Weiler
|
3d35804a7d
|
Removed #warning and #error from ftepp, and made it part of the parser routine. These are "directives" that should exist regardless if -fftepp is enabled, like #pragma. Implemented #warning, #message and #error as directives in parser instead.
|
2013-01-30 01:24:58 +00:00 |
|
Dale Weiler
|
7ea1033a43
|
Handle all possible subscript errors
|
2013-01-27 21:31:18 +00:00 |
|
Dale Weiler
|
1597f38f45
|
Better handling of __VA_ARGS__ subscripting.
|
2013-01-27 21:27:50 +00:00 |
|
Dale Weiler
|
b9fcd64a1f
|
Spiceing up the __VA_ARGS__ test
|
2013-01-27 13:05:01 +00:00 |
|
Dale Weiler
|
6fc5b32123
|
Fix warning, and better tests for __VA_ARGS__
|
2013-01-27 13:03:02 +00:00 |
|
Dale Weiler
|
001d853f38
|
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
|
2013-01-27 12:56:43 +00:00 |
|
Dale Weiler
|
b4fbba5708
|
Implement subscripting for __VA_ARGS__, and added test-case. This only works on INTCONST for now.
|
2013-01-27 12:55:56 +00:00 |
|
Wolfgang Bumiller
|
370b54251e
|
importing bsd-git/PKGBUILD
|
2013-01-27 13:12:57 +01:00 |
|
Wolfgang Bumiller
|
95e8140555
|
fixing an install cmd in bsd-release/PKGBUILD
|
2013-01-27 13:12:04 +01:00 |
|
Wolfgang Bumiller
|
3518646ad7
|
unmasking bsd-git/PKGBUILD in .gitignore
|
2013-01-27 13:10:44 +01:00 |
|
Wolfgang Bumiller
|
03f364a944
|
importing ArchBSD release PKGBUILD
|
2013-01-27 13:09:09 +01:00 |
|
Wolfgang Bumiller
|
44e416e790
|
unmasking bsd-release path in .gitignore
|
2013-01-27 13:08:31 +01:00 |
|
Wolfgang Bumiller
|
3e1c10628c
|
adding pkgrel to arch/this, and getting rid of du's -b option since it won't work for ArchBSD
|
2013-01-27 10:31:27 +01:00 |
|
Dale Weiler
|
531fbaf28c
|
Remove user-defined success/failure messages for the testsuite. Instead print an aligned to console string containing the tmpl file name. This closes #90.
|
2013-01-27 08:39:42 +00:00 |
|
Dale Weiler
|
a94d2fee4e
|
Fixes, updates, and added uninstall target for makefile
|
2013-01-27 07:45:49 +00:00 |
|
Dale Weiler
|
3cc97984bf
|
Add back the removal of the package directory after building package.
|
2013-01-27 07:26:50 +00:00 |
|
Dale Weiler
|
74ba208a44
|
Fix the size calculation
|
2013-01-27 07:25:46 +00:00 |
|
Dale Weiler
|
b4d3241e27
|
Add this/Makefile for generating a .tar.xz for arch packages. This is sort of like the debian one, it can be run from any *nix systems to generate a package. Currently only generates an x86_64 package, like the debian one (which only does i686).
|
2013-01-27 07:08:27 +00:00 |
|
Wolfgang Bumiller
|
4500facb2b
|
manpage: wrong date
|
2013-01-26 14:44:00 +01:00 |
|
Wolfgang Bumiller
|
edfe340d09
|
Fix a warning
|
2013-01-26 14:43:49 +01:00 |
|