]> de.git.xonotic.org Git - xonotic/gmqcc.git/log
xonotic/gmqcc.git
10 years agoFix some things: get all the Quake mods to compile again (I broke binary expressions...
Dale Weiler [Sun, 6 Oct 2013 03:36:48 +0000 (23:36 -0400)]
Fix some things: get all the Quake mods to compile again (I broke binary expressions .. oops) Fix the check-proj script, using $? for status was invalid because of pipes. The ir now properly considers negation virtual instruction to be operations (as it should).

10 years agoUpdate CHANGES files
Dale Weiler [Sun, 6 Oct 2013 02:34:55 +0000 (22:34 -0400)]
Update CHANGES files

10 years agoFix fold_superfluous
Dale Weiler [Fri, 4 Oct 2013 11:10:58 +0000 (07:10 -0400)]
Fix fold_superfluous

10 years agoOnly when peephole optimization is on
Dale Weiler [Fri, 4 Oct 2013 11:02:06 +0000 (07:02 -0400)]
Only when peephole optimization is on

10 years agoHandle proper expression type assignment
Dale Weiler [Fri, 4 Oct 2013 10:53:09 +0000 (06:53 -0400)]
Handle proper expression type assignment

10 years agoAnother peephole optimization which removes superfluous expressions such as (A +...
Dale Weiler [Fri, 4 Oct 2013 10:46:54 +0000 (06:46 -0400)]
Another peephole optimization which removes superfluous expressions such as (A + 0), (A - 0), (A * 1) and (A / 1).

10 years agoRefactor intrinsic stuff
Dale Weiler [Wed, 2 Oct 2013 17:00:34 +0000 (13:00 -0400)]
Refactor intrinsic stuff

10 years agoUpdate documentation
Dale Weiler [Mon, 30 Sep 2013 20:03:22 +0000 (16:03 -0400)]
Update documentation

10 years agoAdd seperate warning flag for directive in macro.
Dale Weiler [Mon, 30 Sep 2013 19:59:36 +0000 (15:59 -0400)]
Add seperate warning flag for directive in macro.

10 years agoWarn when preprocessor directive is found inside a macro body.
Dale Weiler [Mon, 30 Sep 2013 19:57:01 +0000 (15:57 -0400)]
Warn when preprocessor directive is found inside a macro body.

10 years agoMerge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
Dale Weiler [Mon, 30 Sep 2013 18:33:57 +0000 (14:33 -0400)]
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking

10 years agoFix negation type for VINSTR_NEG_V. Source operand for optimization instead of the...
Dale Weiler [Mon, 30 Sep 2013 18:32:21 +0000 (14:32 -0400)]
Fix negation type for VINSTR_NEG_V. Source operand for optimization instead of the expression (to handle double negation elision properly.)

10 years agoMerge branch 'master' into cooking
Wolfgang Bumiller [Mon, 30 Sep 2013 13:02:03 +0000 (15:02 +0200)]
Merge branch 'master' into cooking

10 years agoMerge pull request #134 from Sicness/hyphen
Wolfgang Bumiller [Mon, 30 Sep 2013 13:01:22 +0000 (06:01 -0700)]
Merge pull request #134 from Sicness/hyphen

Fixed hyphen-used-as-minus-sign in gmqcc.1

10 years agoFixed hyphen-used-as-minus-sign in gmqcc.1
Anton Balashov [Mon, 30 Sep 2013 12:43:57 +0000 (16:43 +0400)]
Fixed hyphen-used-as-minus-sign in gmqcc.1

Accortding to lintian report:
I: gmqcc: hyphen-used-as-minus-sign usr/share/man/man1/gmqcc.1.gz:156
N:
N:    This manual page seems to contain a hyphen where a minus sign was
N:    intended. By default, "-" chars are interpreted as hyphens (U+2010) by
N:    groff, not as minus signs (U+002D). Since options to programs use minus
N:    signs (U+002D), this means for example in UTF-8 locales that you cannot
N:    cut and paste options, nor search for them easily. The Debian groff
N:    package currently forces "-" to be interpreted as a minus sign due to
N:    the number of manual pages with this problem, but this is a
N:    Debian-specific modification and hopefully eventually can be removed.
N:
N:    "-" must be escaped ("\-") to be interpreted as minus. If you really
N:    intend a hyphen (normally you don't), write it as "\(hy" to emphasise
N:    that fact. See groff(7) and especially groff_char(7) for details, and
N:    also the thread starting with
N:    http://lists.debian.org/debian-devel/2003/debian-devel-200303/msg01481.html
N:
N:    If you use some tool that converts your documentation to groff format,
N:    this tag may indicate a bug in the tool. Some tools convert dashes of
N:    any kind to hyphens. The safe way of converting dashes is to convert
N:    them to "\-".
N:
N:    Because this error can occur very often, Lintian shows only the first 10
N:    occurrences for each man page and give the number of suppressed
N:    occurrences. If you want to see all warnings, run Lintian with the
N:    -d/--debug option.
N:
N:    Refer to /usr/share/doc/groff-base/README.Debian and the groff_char(7)
N:    manual page for details.
N:
N:    Severity: wishlist, Certainty: possible
N:
N:    Check: manpages, Type: binary
N:
I: gmqcc: hyphen-used-as-minus-sign usr/share/man/man1/gmqcc.1.gz:354
I: gmqcc: hyphen-used-as-minus-sign usr/share/man/man1/gmqcc.1.gz:676

10 years agoHandle double negation case specially. Update TODO
Dale Weiler [Mon, 30 Sep 2013 09:12:28 +0000 (05:12 -0400)]
Handle double negation case specially. Update TODO

10 years agoSimplify parse stage for unary - operator.
Dale Weiler [Mon, 30 Sep 2013 02:08:09 +0000 (22:08 -0400)]
Simplify parse stage for unary - operator.

10 years agoRemove pointless thinking comment, fix builds for clang.
Dale Weiler [Mon, 30 Sep 2013 02:06:26 +0000 (22:06 -0400)]
Remove pointless thinking comment, fix builds for clang.

10 years agoMake unary - operator act as an ast_unary node. This allows for consistency (no sense...
Dale Weiler [Mon, 30 Sep 2013 02:01:46 +0000 (22:01 -0400)]
Make unary - operator act as an ast_unary node. This allows for consistency (no sense in making unary use binstore nodes, it doesn't make much sense). It also allows for the peephole optimization on unary chains that cancel each other to take place; i.e code like "-(-a)" simplifies to "a", thus eliminating instructions.

10 years agoEh, only if peephole optimizations are turned on.
Dale Weiler [Sat, 28 Sep 2013 10:41:40 +0000 (06:41 -0400)]
Eh, only if peephole optimizations are turned on.

10 years agoLess casts.
Dale Weiler [Sat, 28 Sep 2013 10:36:00 +0000 (06:36 -0400)]
Less casts.

10 years agoIt was much easier in the AST, really.
Dale Weiler [Sat, 28 Sep 2013 10:33:15 +0000 (06:33 -0400)]
It was much easier in the AST, really.

10 years agoRemove the rest of it.
Dale Weiler [Sat, 28 Sep 2013 10:10:02 +0000 (06:10 -0400)]
Remove the rest of it.

10 years agoRemove it, maybe it can be done in the AST instead.
Dale Weiler [Sat, 28 Sep 2013 10:09:24 +0000 (06:09 -0400)]
Remove it, maybe it can be done in the AST instead.

10 years agoEh.
Dale Weiler [Sat, 28 Sep 2013 09:36:09 +0000 (05:36 -0400)]
Eh.

10 years agoOptimize for superfluous cases of NOT, i.e !!!!x can be simplified to !!x.
Dale Weiler [Sat, 28 Sep 2013 09:34:53 +0000 (05:34 -0400)]
Optimize for superfluous cases of NOT, i.e !!!!x can be simplified to !!x.

10 years agoMove it over
Dale Weiler [Sat, 28 Sep 2013 07:41:18 +0000 (03:41 -0400)]
Move it over

10 years agoOptimizng compile flags
Igor Gnatenko [Wed, 25 Sep 2013 21:57:07 +0000 (01:57 +0400)]
Optimizng compile flags

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
10 years agoUpdate to 0.3.0 (improved new package: gmqpak)
Igor Gnatenko [Fri, 20 Sep 2013 19:21:39 +0000 (23:21 +0400)]
Update to 0.3.0 (improved new package: gmqpak)

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
10 years agoInitial release
Igor Gnatenko [Sat, 27 Jul 2013 18:44:42 +0000 (22:44 +0400)]
Initial release

Add spec and patch

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
10 years agoFix alias type check
Dale Weiler [Thu, 26 Sep 2013 12:09:55 +0000 (08:09 -0400)]
Fix alias type check

10 years agoImplement constant folding on ternary operations via fold_cond.
Dale Weiler [Thu, 26 Sep 2013 10:51:49 +0000 (06:51 -0400)]
Implement constant folding on ternary operations via fold_cond.

10 years agoConsistency
Dale Weiler [Wed, 25 Sep 2013 20:19:33 +0000 (16:19 -0400)]
Consistency

10 years agoCheap quick hack for ignoring #pragma to EOL
Dale Weiler [Wed, 25 Sep 2013 19:35:18 +0000 (15:35 -0400)]
Cheap quick hack for ignoring #pragma to EOL

10 years agoremove -printf option from find; remove the misplaced 'local's
Wolfgang Bumiller [Wed, 25 Sep 2013 09:16:15 +0000 (11:16 +0200)]
remove -printf option from find; remove the misplaced 'local's

10 years agothere's no pushd/popd in my sh
Wolfgang Bumiller [Wed, 25 Sep 2013 09:14:59 +0000 (11:14 +0200)]
there's no pushd/popd in my sh

10 years agoSome grammar
Dale Weiler [Wed, 25 Sep 2013 08:24:09 +0000 (04:24 -0400)]
Some grammar

10 years agoFix some stuff for xonotic and make check-proj actually use the options line correctly.
Dale Weiler [Wed, 25 Sep 2013 08:23:06 +0000 (04:23 -0400)]
Fix some stuff for xonotic and make check-proj actually use the options line correctly.

10 years agoAdd export utility for Nexuiz, now check-proj handles it.
Dale Weiler [Wed, 25 Sep 2013 08:03:37 +0000 (04:03 -0400)]
Add export utility for Nexuiz, now check-proj handles it.

10 years agoGot Xonotic stuff for check-proj to function.
Dale Weiler [Wed, 25 Sep 2013 07:52:48 +0000 (03:52 -0400)]
Got Xonotic stuff for check-proj to function.

10 years agoFix the xonotic export script for check-proj.sh
Dale Weiler [Tue, 24 Sep 2013 11:53:51 +0000 (07:53 -0400)]
Fix the xonotic export script for check-proj.sh

10 years agoMerge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
Dale Weiler [Tue, 24 Sep 2013 11:32:23 +0000 (07:32 -0400)]
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking

10 years agoFix QuakeWorld compilation by treating assignment to constants as a warning when...
Dale Weiler [Tue, 24 Sep 2013 11:31:53 +0000 (07:31 -0400)]
Fix QuakeWorld compilation by treating assignment to constants as a warning when -std=qcc.

10 years agoUpdate .travis.yml
Dale Weiler [Sun, 22 Sep 2013 12:43:47 +0000 (08:43 -0400)]
Update .travis.yml

10 years agoUpdate .travis.yml
Dale Weiler [Sun, 22 Sep 2013 12:43:24 +0000 (08:43 -0400)]
Update .travis.yml

10 years agothis is still there twice...
Wolfgang Bumiller [Thu, 19 Sep 2013 18:55:41 +0000 (20:55 +0200)]
this is still there twice...

10 years agomoving the QCVM_EXECUTOR ifdef in conout.c - these are used in the executor
Wolfgang Bumiller [Thu, 19 Sep 2013 18:55:32 +0000 (20:55 +0200)]
moving the QCVM_EXECUTOR ifdef in conout.c - these are used in the executor

10 years agoRemove debug printfs
Dale Weiler [Wed, 18 Sep 2013 23:18:10 +0000 (19:18 -0400)]
Remove debug printfs

10 years agoGenerate (non_const_float * (1.0 / constant_float)) for (non_const_float / constant_f...
Dale Weiler [Wed, 18 Sep 2013 23:15:24 +0000 (19:15 -0400)]
Generate (non_const_float * (1.0 / constant_float)) for (non_const_float / constant_float) expressions.

10 years agosince we don't bail on some of the warnings right away, (that is, with -Werror),...
Wolfgang Bumiller [Wed, 18 Sep 2013 14:20:07 +0000 (16:20 +0200)]
since we don't bail on some of the warnings right away, (that is, with -Werror), also check the compile_errors count in main rather than just the return values

10 years agomaking irwarning warn on an unused result
Wolfgang Bumiller [Wed, 18 Sep 2013 14:18:29 +0000 (16:18 +0200)]
making irwarning warn on an unused result

10 years agoDon't need that, each directory already has its own progs.src
Dale Weiler [Thu, 12 Sep 2013 21:18:47 +0000 (17:18 -0400)]
Don't need that, each directory already has its own progs.src

10 years agoOutput the dat name for xonotic export tool (first line of prog.src)
Dale Weiler [Thu, 12 Sep 2013 21:08:40 +0000 (17:08 -0400)]
Output the dat name for xonotic export tool (first line of prog.src)

10 years agoAdded -progsrc commandline switch to specify progs.src files of different names....
Dale Weiler [Thu, 12 Sep 2013 21:06:20 +0000 (17:06 -0400)]
Added -progsrc commandline switch to specify progs.src files of different names. Cleaned up xonotic export script, fixed check-doc on linux systems by disabling mandoc check.

10 years agoAdded xonotic_export.sh utility that when run from a xonotic-data.pk3dir will elimina...
Dale Weiler [Thu, 12 Sep 2013 19:06:36 +0000 (15:06 -0400)]
Added xonotic_export.sh utility that when run from a xonotic-data.pk3dir will eliminate redundant files and create prog.src files for csprogs, progs(server) and menu. This tool will be used for check-proj.sh for exporting xonotic changes to our server.

10 years agoSupport options for check-proj now
Dale Weiler [Wed, 11 Sep 2013 21:09:03 +0000 (17:09 -0400)]
Support options for check-proj now

10 years agoAllow running from root of gmqcc repo as well.
Dale Weiler [Wed, 11 Sep 2013 20:50:33 +0000 (16:50 -0400)]
Allow running from root of gmqcc repo as well.

10 years agoProper gmqcc sourcing for check-proj
Dale Weiler [Wed, 11 Sep 2013 20:48:01 +0000 (16:48 -0400)]
Proper gmqcc sourcing for check-proj

10 years agoTest for gmqcc in check-proj
Dale Weiler [Wed, 11 Sep 2013 20:38:18 +0000 (16:38 -0400)]
Test for gmqcc in check-proj

10 years agofix: declaring locals with the name of a parameter now treats the parameter as the...
Wolfgang Bumiller [Wed, 11 Sep 2013 09:25:44 +0000 (11:25 +0200)]
fix: declaring locals with the name of a parameter now treats the parameter as the local's prototype to avoid it being double-freed later

10 years agoMerge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
Dale Weiler [Tue, 10 Sep 2013 23:16:14 +0000 (19:16 -0400)]
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking

10 years agoAdded check-proj misc tool that downloads various QuakeC projects and tries to compil...
Dale Weiler [Tue, 10 Sep 2013 23:15:28 +0000 (19:15 -0400)]
Added check-proj misc tool that downloads various QuakeC projects and tries to compile them with gmqcc, sort of like an additional test.

10 years agodistro/archbsd/this - as we don't depend on glibc there, just libc; also changed...
Wolfgang Bumiller [Mon, 9 Sep 2013 10:18:30 +0000 (12:18 +0200)]
distro/archbsd/this - as we don't depend on glibc there, just libc; also changed DESTDIR in archlinux/this/Makefile so it can be easily changed from the bsd Makefile

10 years agodistro/archlinux/this: generate the .MTREE file
Wolfgang Bumiller [Mon, 9 Sep 2013 10:08:57 +0000 (12:08 +0200)]
distro/archlinux/this: generate the .MTREE file

10 years agoqcvm: exit on error
Wolfgang Bumiller [Sun, 8 Sep 2013 19:31:56 +0000 (21:31 +0200)]
qcvm: exit on error

10 years agoMerge branch 'master' into cooking
Dale Weiler [Sun, 8 Sep 2013 17:05:20 +0000 (13:05 -0400)]
Merge branch 'master' into cooking

10 years agoFix dependincies
Dale Weiler [Sun, 8 Sep 2013 17:04:07 +0000 (13:04 -0400)]
Fix dependincies

10 years agoAlways print the char the lexer fails on for a token.
Dale Weiler [Sat, 31 Aug 2013 20:52:46 +0000 (16:52 -0400)]
Always print the char the lexer fails on for a token.

10 years agoVector cross product virtual instruction, now >< operator works for non-constant...
Dale Weiler [Sat, 31 Aug 2013 18:49:06 +0000 (14:49 -0400)]
Vector cross product virtual instruction, now >< operator works for non-constant vectors. Thanks divVerent for the help.

10 years agoImplemented >< (vector cross product operator). Currently support for constants only.
Dale Weiler [Sat, 31 Aug 2013 17:41:25 +0000 (13:41 -0400)]
Implemented >< (vector cross product operator). Currently support for constants only.

10 years agoPrevent divide by zero for / and % operations in constant folding (previously caused...
Dale Weiler [Sat, 31 Aug 2013 16:57:24 +0000 (12:57 -0400)]
Prevent divide by zero for / and % operations in constant folding (previously caused compiler SIGFPE), instead "inf" is generated for both cases. This closes #124

10 years agoThere is no bug since the testsuite uses -o for preprocessed output (thus the printf...
Dale Weiler [Sat, 31 Aug 2013 13:53:19 +0000 (09:53 -0400)]
There is no bug since the testsuite uses -o for preprocessed output (thus the printf never gets involved) if the testsuite read the preprocessor output from stdout than things would be wrong, since however it isn't there is no bug.

10 years agoDon't allow a stale 'some_type;' declaration without an actual variable name; Same...
Wolfgang Bumiller [Sat, 31 Aug 2013 09:35:12 +0000 (11:35 +0200)]
Don't allow a stale 'some_type;' declaration without an actual variable name; Same for typedef; closes #119

10 years agothis one can be reached - make it a little more helpful
Wolfgang Bumiller [Sat, 31 Aug 2013 08:55:03 +0000 (10:55 +0200)]
this one can be reached - make it a little more helpful

10 years agomore thorough check for whether an ast node starts a new label; closes #121
Wolfgang Bumiller [Sat, 31 Aug 2013 08:48:24 +0000 (10:48 +0200)]
more thorough check for whether an ast node starts a new label; closes #121

10 years agofactor check for assignment-to-constant into a function; improve its error output...
Wolfgang Bumiller [Sat, 31 Aug 2013 08:39:31 +0000 (10:39 +0200)]
factor check for assignment-to-constant into a function; improve its error output; closes #122

10 years agofix unhelpful error message; fixes #123
Wolfgang Bumiller [Sat, 31 Aug 2013 08:19:10 +0000 (10:19 +0200)]
fix unhelpful error message; fixes #123

10 years agoLogic elsewhere handles this (no need to duplicate)
Dale Weiler [Fri, 30 Aug 2013 11:23:15 +0000 (07:23 -0400)]
Logic elsewhere handles this (no need to duplicate)

10 years agointrinsic folding cleanups (and improvements.)
Dale Weiler [Fri, 30 Aug 2013 11:12:16 +0000 (07:12 -0400)]
intrinsic folding cleanups (and improvements.)

10 years agoRid of util_debug
Dale Weiler [Fri, 30 Aug 2013 10:49:24 +0000 (06:49 -0400)]
Rid of util_debug

10 years agoMake -fshort-logic -funtyped-nil -fvariadic-args default for -std=gmqcc
Dale Weiler [Thu, 29 Aug 2013 11:56:22 +0000 (07:56 -0400)]
Make -fshort-logic -funtyped-nil -fvariadic-args default for -std=gmqcc

10 years agoRemove &~= operator from gmqccs operator table, only fteqcc supports it.
Dale Weiler [Thu, 29 Aug 2013 11:19:19 +0000 (07:19 -0400)]
Remove &~= operator from gmqccs operator table, only fteqcc supports it.

10 years agoMerge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking
Dale Weiler [Thu, 29 Aug 2013 11:08:03 +0000 (07:08 -0400)]
Merge branch 'cooking' of github.com:graphitemaster/gmqcc into cooking

10 years agoSome changes changes
Dale Weiler [Thu, 29 Aug 2013 11:07:43 +0000 (07:07 -0400)]
Some changes changes

10 years agothis should allow for better detection of precedence issues
Wolfgang Bumiller [Thu, 29 Aug 2013 08:22:48 +0000 (10:22 +0200)]
this should allow for better detection of precedence issues

10 years agoalso warn about mixing logical and/or operations without parenthesis
Wolfgang Bumiller [Thu, 29 Aug 2013 06:26:17 +0000 (08:26 +0200)]
also warn about mixing logical and/or operations without parenthesis

10 years agowarn when mixing different bitops without parenthesis around them
Wolfgang Bumiller [Thu, 29 Aug 2013 06:18:06 +0000 (08:18 +0200)]
warn when mixing different bitops without parenthesis around them

10 years agoFix folding logic for conditions.
Dale Weiler [Thu, 29 Aug 2013 04:18:48 +0000 (00:18 -0400)]
Fix folding logic for conditions.

10 years agoImplement [[eraseable]] attribute. When used with a function it instructs the AST...
Dale Weiler [Thu, 29 Aug 2013 04:05:37 +0000 (00:05 -0400)]
Implement [[eraseable]] attribute. When used with a function it instructs the AST (which than transfers logic to the IR) that the function (or variable) is potentially unused (verified by checking the read count). This than propogates through the IR and prevents the IR from generating both the definition and global/function. The intrinsics system uses this as well to prevent intrinsic functions from being generated unless they're used.

10 years agoFix build on clang
Dale Weiler [Wed, 28 Aug 2013 17:01:46 +0000 (13:01 -0400)]
Fix build on clang

10 years agoConstant fold intrinsics if their arguments are constant. TODO: reference count intri...
Dale Weiler [Wed, 28 Aug 2013 16:46:22 +0000 (12:46 -0400)]
Constant fold intrinsics if their arguments are constant. TODO: reference count intrinsics such that they're not generated unless they're used, currently when an intrinsic can be folded-away it's marked for generation and makes it to the final output binary even though it isn't used.

10 years agoImplemented a __builtin_fabs intrinsic.
Dale Weiler [Wed, 28 Aug 2013 15:28:27 +0000 (11:28 -0400)]
Implemented a __builtin_fabs intrinsic.

10 years agoFix fold-dce for if(0)
Dale Weiler [Wed, 28 Aug 2013 14:39:48 +0000 (10:39 -0400)]
Fix fold-dce for if(0)

10 years agoAdd missing -width to .Bl in doc/gmqpak.1
Wolfgang Bumiller [Wed, 28 Aug 2013 12:40:23 +0000 (14:40 +0200)]
Add missing -width to .Bl in doc/gmqpak.1

10 years agoFix bad use of .D1 in doc/qcvm.1
Wolfgang Bumiller [Wed, 28 Aug 2013 12:38:51 +0000 (14:38 +0200)]
Fix bad use of .D1 in doc/qcvm.1

10 years agomisc/check-doc.sh: run mandoc -Tlint -Wall on the manpages
Wolfgang Bumiller [Wed, 28 Aug 2013 12:33:09 +0000 (14:33 +0200)]
misc/check-doc.sh: run mandoc -Tlint -Wall on the manpages

10 years agoallow initializing shadowed locals outside of -std=gmqcc - in this case it becomes...
Wolfgang Bumiller [Wed, 28 Aug 2013 12:20:33 +0000 (14:20 +0200)]
allow initializing shadowed locals outside of -std=gmqcc - in this case it becomes a regular assignment to the old declaration which is consistent with fteqcc

10 years agoCleanups
Dale Weiler [Wed, 28 Aug 2013 07:45:40 +0000 (03:45 -0400)]
Cleanups

10 years agoHandle return status from compiler, this fixes false positivies in the testsuite...
Dale Weiler [Wed, 28 Aug 2013 07:40:35 +0000 (03:40 -0400)]
Handle return status from compiler, this fixes false positivies in the testsuite when the compiler segfaults and the testsuite still reports succeeded, now it won't hopefully.

10 years agoDon't ignore empty newlines when match in the testsuite, instead only ignore when...
Dale Weiler [Wed, 28 Aug 2013 07:34:05 +0000 (03:34 -0400)]
Don't ignore empty newlines when match in the testsuite, instead only ignore when procedure type is -pp (i.e preprocessing).