scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 4f8c064dd03b39ff214733ab69fb49662e75a8dd
parent f03283b0bb20076bcdb814658bde66f5c042968c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 17 Aug 2015 22:55:54 +0200

Fix small bug in chktest.sh

The regural expression was matching only a * at the benginning of the line
when the correct regular expression must match a * and a / at the beginnnig
of the line

Diffstat:
Mcc1/tests/chktest.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/tests/chktest.sh b/cc1/tests/chktest.sh @@ -23,7 +23,7 @@ do /^output:$/ { copyon=1 } - /^\*/ { + /^\*\// { copyon=0 } copyon==1 && !/^output:$/ {