pkgsrc/lang/f2c/patches/patch-aa
2015-12-29 23:34:43 +00:00

19 lines
613 B
Text

$NetBSD: patch-aa,v 1.21 2015/12/29 23:34:46 dholland Exp $
Fix syntax.
--- src/gram.expr.orig 2003-02-11 13:53:48.000000000 +0100
+++ src/gram.expr
@@ -99,9 +99,9 @@ simple: name
simple_const: STRUE { $$ = mklogcon(1); }
| SFALSE { $$ = mklogcon(0); }
| SHOLLERITH { $$ = mkstrcon(toklen, token); }
- | SICON = { $$ = mkintqcon(toklen, token); }
- | SRCON = { $$ = mkrealcon(tyreal, token); }
- | SDCON = { $$ = mkrealcon(TYDREAL, token); }
+ | SICON { $$ = mkintqcon(toklen, token); }
+ | SRCON { $$ = mkrealcon(tyreal, token); }
+ | SDCON { $$ = mkrealcon(TYDREAL, token); }
| bit_const
;