summaryrefslogtreecommitdiff
path: root/perlyline.pl
diff options
context:
space:
mode:
Diffstat (limited to 'perlyline.pl')
-rw-r--r--perlyline.pl11
1 files changed, 0 insertions, 11 deletions
diff --git a/perlyline.pl b/perlyline.pl
deleted file mode 100644
index f360fb41ef..0000000000
--- a/perlyline.pl
+++ /dev/null
@@ -1,11 +0,0 @@
-$line = 1;
-while (<>)
- {
- $line++;
- # 1st correct #line directives for perly.c itself
- s/^(#line\s+)\d+(\s*"perly\.c"\s*)$/$1$line$2/;
- # now add () round things gcc dislikes
- s/if \(yyn = yydefred\[yystate\]\)/if ((yyn = yydefred[yystate]))/;
- s/if \(yys = getenv\("YYDEBUG"\)\)/if ((yys = getenv("YYDEBUG")))/;
- print;
- }