diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2016-03-15 05:31:41 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-03-20 00:21:02 +0100 |
commit | 7f10b4ed6a557b7a1fd1083939156a3dcf8b377e (patch) | |
tree | 9067ea000d67fd1622c1ef6160205b7154e9260d /parser.y | |
parent | 90963b533e0e8c1dccfcf79afe55d6b0a9c55d79 (diff) | |
download | mig-7f10b4ed6a557b7a1fd1083939156a3dcf8b377e.tar.gz mig-7f10b4ed6a557b7a1fd1083939156a3dcf8b377e.tar.bz2 mig-7f10b4ed6a557b7a1fd1083939156a3dcf8b377e.zip |
Remove functions, procedures and simple procedures.
This has been tested by cross-compiling a base Hurd system to make sure
these kinds of routines are no longer used.
* lexxer.l: Remove tokens.
* parser.y: Remove token types and production rules.
* routine.c: Remove rtMakeProcedure, rtMakeSimpleProcedure,
rtMakeFunction.
* routine.h: Remove enum values rkSimpleProcedure, rkProcedure,
rkFunction. Remove dead fields from struct routine.
* user.c: Simplify and remove dead code.
Diffstat (limited to 'parser.y')
-rw-r--r-- | parser.y | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -27,9 +27,6 @@ %token sySkip %token syRoutine %token sySimpleRoutine -%token sySimpleProcedure -%token syProcedure -%token syFunction %token sySubsystem %token syKernelUser @@ -111,7 +108,6 @@ %type <type> BasicTypeSpec PrevTypeSpec ArgumentType %type <symtype> PrimIPCType IPCType %type <routine> RoutineDecl Routine SimpleRoutine -%type <routine> Procedure SimpleProcedure Function %type <direction> Direction %type <argument> Argument Arguments ArgumentList %type <flag> IPCFlags @@ -582,9 +578,6 @@ IntExp : IntExp syPlus IntExp RoutineDecl : Routine { $$ = $1; } | SimpleRoutine { $$ = $1; } - | Procedure { $$ = $1; } - | SimpleProcedure { $$ = $1; } - | Function { $$ = $1; } ; Routine : syRoutine syIdentifier Arguments @@ -595,18 +588,6 @@ SimpleRoutine : sySimpleRoutine syIdentifier Arguments { $$ = rtMakeSimpleRoutine($2, $3); } ; -Procedure : syProcedure syIdentifier Arguments - { $$ = rtMakeProcedure($2, $3); } - ; - -SimpleProcedure : sySimpleProcedure syIdentifier Arguments - { $$ = rtMakeSimpleProcedure($2, $3); } - ; - -Function : syFunction syIdentifier Arguments ArgumentType - { $$ = rtMakeFunction($2, $3, $4); } - ; - Arguments : syLParen syRParen { $$ = argNULL; } | syLParen ArgumentList syRParen |